:root {
    --white: #ffffff;
    --off-white: #f7f7f4;
    --graphite: #17191c;
    --graphite-dark: #0f1113;
    --steel: #5f6872;
    --steel-soft: #eef0f1;
    --line: #e1e4e6;
    --yellow: #f4b000;
    --yellow-hover: #d99a00;
    --text-muted: #666f76;
    --shadow: 0 22px 60px rgba(15, 17, 19, 0.16);
    --radius: 6px;
    --content: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--graphite);
    background: var(--off-white);
    font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(244, 176, 0, 0.72);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 18px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 800;
}

.skip-link:focus {
    top: 14px;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 82px;
    padding: 14px clamp(18px, 4vw, 54px);
    color: var(--white);
    background: linear-gradient(180deg, rgba(15, 17, 19, 0.62), rgba(15, 17, 19, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.nav-backdrop {
    display: none;
}

.nav-panel {
    display: contents;
}

.nav-panel-language {
    display: none;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    min-height: 72px;
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(244, 176, 0, 0.45);
    border-radius: var(--radius);
}

.brand-mark img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 900;
}

.brand-text small {
    color: currentColor;
    font-size: 0.72rem;
    font-weight: 750;
    opacity: 0.68;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.site-nav a,
.language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 760;
    color: currentColor;
    opacity: 0.78;
    transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.language-switch a:hover,
.language-switch a.is-active {
    opacity: 1;
    background: rgba(244, 176, 0, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-scrolled .language-switch a:hover,
.site-header.is-scrolled .language-switch a.is-active,
.site-header.is-menu-open .site-nav a:hover,
.site-header.is-menu-open .site-nav a.is-active,
.site-header.is-menu-open .language-switch a:hover,
.site-header.is-menu-open .language-switch a.is-active {
    background: var(--yellow);
}

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

.language-switch {
    display: inline-flex;
    gap: 2px;
}

.header-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    overflow: hidden;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    box-shadow: 0 0 0 rgba(244, 176, 0, 0);
    font-weight: 900;
    white-space: nowrap;
    animation: offerPulse 3.2s ease-in-out infinite;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -70%;
    width: 48%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: skewX(-18deg);
    animation: offerSweep 3.8s ease-in-out infinite;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--yellow-hover);
    box-shadow: 0 12px 28px rgba(244, 176, 0, 0.28);
    transform: translateY(-1px);
}

.header-cta span,
.header-cta {
    isolation: isolate;
}

@keyframes offerPulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(244, 176, 0, 0);
    }

    48% {
        box-shadow: 0 0 0 5px rgba(244, 176, 0, 0.16), 0 10px 26px rgba(244, 176, 0, 0.18);
    }
}

@keyframes offerSweep {
    0%,
    42% {
        transform: translateX(0) skewX(-18deg);
    }

    62%,
    100% {
        transform: translateX(370%) skewX(-18deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-cta,
    .header-cta::before {
        animation: none;
    }
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle {
    background: var(--white);
    border-color: var(--line);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    background: var(--graphite-dark);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background:
        linear-gradient(135deg, rgba(95, 104, 114, 0.6), rgba(15, 17, 19, 0.92)),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px),
        repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.055) 35px 36px),
        var(--graphite-dark);
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms ease;
}

.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video.is-loaded {
    opacity: 1;
}

.home-hero.has-video .hero-product-visual {
    opacity: 0;
}

.hero-poster:not(.is-broken) ~ .hero-product-visual {
    opacity: 0;
}

.hero-product-visual {
    position: absolute;
    right: clamp(20px, 8vw, 140px);
    bottom: 9%;
    width: min(54vw, 760px);
    height: min(48vw, 540px);
    opacity: 0.78;
    transform: perspective(900px) rotateX(58deg) rotateZ(-28deg);
    transition: opacity 500ms ease;
}

.hero-product-visual span {
    position: absolute;
    right: 0;
    left: 0;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background:
        linear-gradient(90deg, rgba(244, 176, 0, 0.32), transparent 22%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 8px, rgba(255, 255, 255, 0.08) 8px 28px);
    box-shadow: 0 26px 42px rgba(0, 0, 0, 0.28);
}

.hero-product-visual span:nth-child(1) {
    top: 30px;
}

.hero-product-visual span:nth-child(2) {
    top: 132px;
    right: 44px;
    left: 44px;
}

.hero-product-visual span:nth-child(3) {
    top: 234px;
    right: 88px;
    left: 88px;
}

img.is-broken {
    display: none;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(15, 17, 19, 0.88) 0%, rgba(15, 17, 19, 0.66) 42%, rgba(15, 17, 19, 0.24) 100%),
        linear-gradient(180deg, rgba(15, 17, 19, 0.18) 0%, rgba(15, 17, 19, 0.76) 100%),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.055) 80px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(32px, 7vw, 96px);
    align-items: end;
    width: min(100% - 36px, var(--content));
    margin: 0 auto;
    padding: 150px 0 140px;
}

.hero-copy {
    max-width: 830px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    max-width: 900px;
    font-size: clamp(3rem, 7.5vw, 6.8rem);
    line-height: 0.92;
    font-weight: 950;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 1;
    font-weight: 940;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.18;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--graphite);
    background: var(--yellow);
}

.button-primary:hover {
    background: var(--yellow-hover);
}

.button-secondary {
    border-color: var(--line);
    background: var(--white);
}

.button-on-dark {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(12px);
}

.button-on-dark:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-spec-panel {
    align-self: end;
    padding: 24px;
    color: var(--white);
    background: rgba(15, 17, 19, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.hero-spec-panel span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px 9px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-spec-panel strong {
    display: block;
    margin-bottom: 18px;
    font-size: 1.28rem;
    line-height: 1.12;
}

.hero-spec-panel ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-spec-panel li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.hero-spec-panel li::before {
    content: "";
    width: 14px;
    height: 2px;
    margin-top: 12px;
    background: var(--yellow);
}

.hero-trust {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(100% - 36px, var(--content));
    margin: 0 auto;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust span {
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 850;
}

.hero-trust span:last-child {
    border-right: 0;
}

.scroll-indicator {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
    bottom: 28px;
    z-index: 3;
    display: grid;
    width: 32px;
    height: 54px;
    place-items: start center;
    padding-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.scroll-indicator span {
    width: 4px;
    height: 12px;
    background: var(--yellow);
    border-radius: 999px;
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    50% {
        transform: translateY(14px);
        opacity: 1;
    }
}

.home-section,
.home-cta {
    padding: clamp(70px, 10vw, 128px) clamp(18px, 4vw, 54px);
}

.section-shell {
    width: min(100%, var(--content));
    margin: 0 auto;
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
    gap: clamp(28px, 7vw, 90px);
    align-items: end;
    margin-bottom: 36px;
}

.section-heading-row p,
.why-grid > div:first-child + div,
.home-cta p {
    color: var(--text-muted);
}

.advantages-section {
    background: var(--white);
}

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

.advantage-card {
    min-height: 250px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(244, 176, 0, 0.08), transparent 34%),
        var(--white);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.advantage-card span,
.technical-item span,
.process-step span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--yellow-hover);
    font-size: 0.78rem;
    font-weight: 950;
}

.advantage-card p,
.process-step p,
.faq-item p,
.footer-brand p {
    color: var(--text-muted);
}

.production-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 18% 18%, rgba(244, 176, 0, 0.14), transparent 32%),
        var(--graphite);
    background-size: 72px 72px, 72px 72px, auto, auto;
}

.production-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
    gap: clamp(34px, 7vw, 92px);
    align-items: center;
}

.production-copy h2 {
    max-width: 760px;
    color: var(--white);
}

.production-copy p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.production-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.production-tags span {
    flex-basis: 100%;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.production-tags strong {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    font-size: 0.86rem;
}

.production-slider {
    display: grid;
    gap: 16px;
}

.production-slider__stage {
    position: relative;
    min-height: clamp(440px, 46vw, 660px);
    padding: clamp(10px, 1.5vw, 16px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.34);
}

.production-slider__stage::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius) - 2px);
    pointer-events: none;
}

.production-slider__frame {
    position: absolute;
    inset: clamp(10px, 1.5vw, 16px);
    margin: 0;
    overflow: hidden;
    background: var(--graphite-dark);
    border-radius: calc(var(--radius) - 2px);
}

.production-slider__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 48%, rgba(15, 17, 19, 0.72)),
        linear-gradient(90deg, rgba(15, 17, 19, 0.42), transparent 42%);
}

.production-slider__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: opacity 360ms ease, transform 700ms ease, filter 360ms ease;
}

.production-slider__frame img.is-changing {
    opacity: 0;
    transform: scale(1.055);
    filter: saturate(0.9);
}

.production-slider__frame figcaption {
    position: absolute;
    left: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 36px);
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(15, 17, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 850;
    backdrop-filter: blur(14px);
}

.production-slider__frame figcaption span {
    color: var(--yellow);
    font-weight: 950;
}

.production-slider__materials {
    position: absolute;
    top: clamp(18px, 3vw, 34px);
    right: clamp(18px, 3vw, 34px);
    z-index: 3;
    display: grid;
    gap: 10px;
    width: min(330px, calc(100% - 36px));
    padding: 16px;
    color: var(--white);
    background: rgba(15, 17, 19, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.production-slider__materials span {
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.production-slider__materials p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.production-slider__materials div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.production-slider__materials strong {
    padding: 7px 10px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: 4px;
    font-size: 0.76rem;
}

.production-slider__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.production-slider__thumb {
    position: relative;
    min-height: 86px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: var(--graphite-dark);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.production-slider__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 19, 0.22);
    transition: background 220ms ease;
}

.production-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease, filter 260ms ease;
}

.production-slider__thumb:hover img,
.production-slider__thumb.is-active img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.08);
}

.production-slider__thumb:hover::after,
.production-slider__thumb.is-active::after {
    background: rgba(15, 17, 19, 0);
}

.production-slider__thumb.is-active {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(244, 176, 0, 0.22), 0 18px 42px rgba(0, 0, 0, 0.32);
}

.production-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.production-stats article {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 24px;
    background: rgba(15, 17, 19, 0.64);
}

.production-stats strong {
    color: var(--yellow);
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 0.9;
}

.production-stats span {
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 750;
}

.product-section {
    background: var(--off-white);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    position: relative;
    display: grid;
    min-height: 380px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.12), transparent 42%),
        repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.07) 25px 26px),
        var(--graphite);
    border-radius: var(--radius);
    isolation: isolate;
}

.category-card-large {
    grid-column: span 2;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(15, 17, 19, 0.12), rgba(15, 17, 19, 0.5) 44%, rgba(15, 17, 19, 0.94)),
        linear-gradient(90deg, rgba(15, 17, 19, 0.44), rgba(15, 17, 19, 0.08));
}

.category-image,
.category-visual {
    position: absolute;
    inset: 0;
}

.category-image {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.category-card:hover .category-image {
    transform: scale(1.04);
}

.category-visual {
    overflow: hidden;
}

.category-visual::before,
.category-visual::after,
.category-visual span {
    content: "";
    position: absolute;
    display: block;
}

.category-visual::before {
    inset: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-visual span {
    right: 28px;
    bottom: 100px;
    left: 28px;
    height: 58px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0 8px, rgba(255, 255, 255, 0.12) 8px 26px);
    transform: skewY(-8deg);
}

.category-visual-roof::after {
    right: 18px;
    bottom: 144px;
    width: 78%;
    height: 34%;
    background: rgba(244, 176, 0, 0.28);
    clip-path: polygon(0 72%, 50% 0, 100% 72%, 100% 100%, 0 100%);
}

.category-visual-facade::after {
    inset: 70px 42px 110px;
    background: repeating-linear-gradient(90deg, rgba(244, 176, 0, 0.24) 0 22px, rgba(255, 255, 255, 0.14) 22px 44px);
}

.category-visual-gutter::after {
    right: 34px;
    bottom: 128px;
    width: 70%;
    height: 42px;
    border: 12px solid rgba(244, 176, 0, 0.45);
    border-top: 0;
    border-radius: 0 0 44px 44px;
}

.category-visual-fence::after {
    inset: 74px 42px 112px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0 10px, transparent 10px 34px);
    border-top: 12px solid rgba(244, 176, 0, 0.38);
    border-bottom: 12px solid rgba(244, 176, 0, 0.38);
}

.category-visual-profile::after {
    right: 36px;
    bottom: 122px;
    left: 36px;
    height: 86px;
    background: repeating-linear-gradient(135deg, rgba(244, 176, 0, 0.42) 0 12px, rgba(255, 255, 255, 0.14) 12px 30px);
    transform: skewX(-18deg);
}

.category-card div {
    position: relative;
    z-index: 3;
    align-self: end;
    padding: 24px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.category-card div::after {
    content: "→";
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-top: 18px;
    place-items: center;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: 50%;
    text-shadow: none;
    transition: transform 180ms ease, background 180ms ease;
}

.category-card:hover div::after {
    background: var(--yellow-hover);
    transform: translateX(4px);
}

.category-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--yellow);
    font-weight: 950;
}

.category-card h3,
.category-card p {
    color: var(--white);
}

.category-card p {
    margin-bottom: 0;
    max-width: 32ch;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
}

.why-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        var(--graphite-dark);
    background-size: 80px 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(34px, 8vw, 110px);
}

.technical-list {
    display: grid;
    gap: 1px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.technical-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 22px 0;
    background: var(--graphite-dark);
}

.technical-item span {
    margin: 0;
}

.technical-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
    background: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-card {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(95, 104, 114, 0.92), rgba(23, 25, 28, 0.96)),
        repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.08) 31px 32px);
    border-radius: var(--radius);
}

.project-card-wide {
    grid-column: span 2;
}

.project-visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.18), transparent 42%),
        repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.08) 39px 40px),
        repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.055) 39px 40px);
}

.project-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.project-card:hover .project-image {
    transform: scale(1.035);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(15, 17, 19, 0.02), rgba(15, 17, 19, 0.58));
}

.project-visual::before,
.project-visual::after {
    content: "";
    position: absolute;
}

.project-visual-roof::before {
    right: 8%;
    bottom: 24%;
    width: 78%;
    height: 42%;
    background: rgba(255, 255, 255, 0.18);
    clip-path: polygon(0 68%, 50% 0, 100% 68%, 100% 100%, 0 100%);
}

.project-visual-roof::after,
.project-visual-facade::after,
.project-visual-profile::after {
    right: 10%;
    bottom: 23%;
    left: 10%;
    height: 76px;
    background: repeating-linear-gradient(90deg, rgba(244, 176, 0, 0.52) 0 10px, rgba(255, 255, 255, 0.2) 10px 32px);
    transform: skewY(-7deg);
}

.project-visual-profile::before {
    inset: 26% 12% 34%;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0 12px, rgba(244, 176, 0, 0.34) 12px 32px);
    transform: skewX(-16deg);
}

.project-visual-facade::before {
    inset: 18% 14% 28%;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 34px, rgba(244, 176, 0, 0.28) 34px 48px);
}

.project-card figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    padding: 12px 14px;
    color: var(--white);
    background: rgba(15, 17, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    font-weight: 850;
}

.process-section {
    background: var(--off-white);
}

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

.process-step {
    position: relative;
    padding: 28px 24px 0 0;
}

.process-step::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: clamp(34px, 8vw, 100px);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-item summary {
    cursor: pointer;
    padding: 19px 20px;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
}

.home-cta {
    background: var(--graphite-dark);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: clamp(32px, 6vw, 58px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(244, 176, 0, 0.2), transparent 44%),
        repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.06) 79px 80px),
        #202329;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.cta-panel p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    padding: 46px clamp(18px, 4vw, 54px);
    color: rgba(255, 255, 255, 0.78);
    background: var(--graphite-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
    width: min(100%, var(--content));
    margin: 0 auto;
}

.brand-footer {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 470px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-nav,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-nav {
    min-width: 220px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.footer-nav > span {
    color: var(--yellow);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 12px;
    gap: 10px;
    align-items: center;
    min-height: 46px;
    padding: 10px 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 850;
}

.footer-nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.45;
    transform: rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
}

.footer-nav a small {
    color: rgba(244, 176, 0, 0.76);
    font-size: 0.72rem;
    font-weight: 950;
}

.footer-nav a strong {
    font-size: 0.98rem;
    font-weight: 880;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--yellow);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
}

.footer-contact {
    min-width: min(100%, 390px);
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.footer-contact__head {
    display: grid;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact__head span,
.footer-contact__grid small {
    color: var(--yellow);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-contact__phone {
    color: var(--white);
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    font-weight: 950;
    line-height: 1;
}

.footer-contact__grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.footer-contact__grid a,
.footer-contact__grid div {
    display: grid;
    gap: 3px;
    padding: 12px;
    background: rgba(15, 17, 19, 0.46);
}

.footer-contact__grid strong {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.25;
}

.footer-contact__grid a:hover strong {
    color: var(--yellow);
}

.footer-contact__cta {
    display: inline-flex;
    width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 10px 13px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 930;
    transition: background 180ms ease, transform 180ms ease;
}

.footer-contact__cta:hover,
.footer-contact__cta:focus-visible {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

.page-hero,
.content-section,
.contact-section,
.stats-band {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.page-hero {
    padding-top: 132px;
    padding-bottom: 48px;
}

.page-hero > p,
.section-heading span {
    max-width: 680px;
    color: var(--text-muted);
}

.content-section,
.contact-section {
    padding-top: 56px;
    padding-bottom: 82px;
}

.section-muted {
    background: var(--steel-soft);
}

.section-heading {
    display: grid;
    gap: 4px;
    margin-bottom: 28px;
}

.card-grid,
.gallery-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.gallery-card,
.value-item,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.product-card,
.value-item {
    min-height: 220px;
    padding: 24px;
}

.product-card span,
.value-item span {
    display: block;
    margin-bottom: 24px;
    color: var(--yellow-hover);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card p,
.gallery-card p {
    color: var(--text-muted);
}

.about-hero,
.about-section,
.about-cta {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    gap: clamp(34px, 7vw, 92px);
    align-items: center;
    min-height: 760px;
    padding-top: 132px;
    padding-bottom: 82px;
    background:
        linear-gradient(90deg, rgba(15, 17, 19, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 17, 19, 0.035) 1px, transparent 1px),
        var(--off-white);
    background-size: 72px 72px;
}

.about-hero__copy,
.about-hero__media,
.about-intro,
.about-principles,
.about-systems,
.about-cta {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.about-hero__copy {
    justify-self: end;
    display: grid;
    gap: 20px;
    max-width: 760px;
}

.about-hero__copy h1 {
    margin: 0;
    color: var(--graphite);
    font-size: clamp(3rem, 6.8vw, 6.5rem);
    line-height: 0.92;
}

.about-hero__copy > p:not(.eyebrow) {
    max-width: 690px;
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.about-hero__media {
    position: relative;
    justify-self: start;
    min-height: clamp(510px, 48vw, 670px);
}

.about-hero__media figure {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--graphite-dark);
    border: 1px solid rgba(15, 17, 19, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 30px 74px rgba(15, 17, 19, 0.18);
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__main {
    inset: 0 16% 13% 0;
}

.about-hero__small {
    right: 0;
    bottom: 0;
    width: min(48%, 320px);
    height: 38%;
}

.about-hero__note {
    position: absolute;
    right: clamp(16px, 3vw, 28px);
    top: clamp(16px, 3vw, 28px);
    z-index: 2;
    display: grid;
    gap: 4px;
    max-width: 260px;
    padding: 14px;
    color: var(--white);
    background: rgba(15, 17, 19, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.about-hero__note span,
.about-principles__grid span {
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero__note strong {
    font-size: 0.96rem;
    line-height: 1.25;
}

.about-section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: clamp(28px, 7vw, 88px);
    align-items: stretch;
}

.about-intro__text {
    display: flex;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.16), transparent 38%),
        var(--graphite);
    border-radius: var(--radius);
}

.about-intro__text p {
    margin: 0;
    font-size: clamp(1.35rem, 2.6vw, 2.35rem);
    font-weight: 850;
    line-height: 1.14;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-metrics article {
    display: grid;
    gap: 10px;
    min-height: 190px;
    padding: 22px;
    background: var(--white);
}

.about-metrics strong {
    color: var(--graphite);
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.9;
}

.about-metrics span {
    color: var(--text-muted);
    font-weight: 780;
}

.about-principles {
    border-top: 1px solid var(--line);
}

.about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-principles__grid article {
    display: grid;
    gap: 12px;
    min-height: 260px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(244, 176, 0, 0.08), transparent 34%),
        var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.about-principles__grid h3,
.about-systems h2,
.about-cta h2 {
    margin: 0;
    color: var(--graphite);
}

.about-principles__grid p,
.about-systems p,
.about-cta p {
    color: var(--text-muted);
}

.about-systems {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.92fr);
    gap: clamp(28px, 7vw, 88px);
    align-items: center;
    padding-top: 0;
}

.about-systems figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--graphite-dark);
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(15, 17, 19, 0.12);
}

.about-systems img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-systems > div {
    display: grid;
    gap: 16px;
}

.about-systems ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

.about-systems li {
    padding: 9px 12px;
    color: var(--graphite);
    background: var(--steel-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 850;
}

.about-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 82px;
    padding-top: clamp(26px, 4vw, 42px);
    padding-bottom: clamp(26px, 4vw, 42px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.18), transparent 36%),
        var(--graphite-dark);
    border-radius: var(--radius);
}

.about-cta h2,
.about-cta p {
    color: var(--white);
}

.about-cta p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.products-hero,
.products-catalog,
.product-process {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.products-hero {
    padding-top: 132px;
    padding-bottom: 72px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 244, 1)),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(23, 25, 28, 0.035) 43px 44px);
}

.products-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 5vw, 76px);
    width: min(100%, var(--content));
    margin: 0 auto;
    align-items: center;
}

.products-hero-copy {
    display: grid;
    gap: 20px;
}

.products-hero-copy h1 {
    margin: 0;
    max-width: 780px;
}

.products-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.products-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.products-hero-media {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--graphite-dark);
    box-shadow: var(--shadow);
}

.products-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 17, 19, 0), rgba(15, 17, 19, 0.54)),
        repeating-linear-gradient(90deg, transparent 0 48px, rgba(255, 255, 255, 0.08) 49px 50px);
    pointer-events: none;
}

.products-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.products-hero-media figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(15, 17, 19, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-weight: 900;
}

.products-hero-media figcaption span {
    color: var(--yellow);
}

.products-catalog,
.product-process {
    padding-top: 76px;
    padding-bottom: 86px;
}

.products-catalog {
    background: var(--white);
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, var(--content));
    margin: 38px auto 0;
}

.product-category-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(15, 17, 19, 0.08);
}

.product-category-image {
    position: relative;
    min-height: 238px;
    overflow: hidden;
    background: var(--steel-soft);
}

.product-category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 19, 0), rgba(15, 17, 19, 0.2));
}

.product-category-image img {
    width: 100%;
    height: 100%;
    min-height: 238px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.04);
}

.product-category-content {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.product-category-content span,
.product-category-meta {
    color: var(--yellow-hover);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-category-content h3 {
    margin: 0;
    font-size: 1.35rem;
}

.product-category-content p {
    margin: 0;
    color: var(--text-muted);
}

.product-category-meta {
    padding-top: 10px;
    color: var(--steel);
    border-top: 1px solid var(--line);
}

.product-category-content a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 44px;
    margin-top: 4px;
    padding: 10px 12px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 900;
}

.product-category-content a::after {
    content: "→";
    font-size: 1.1rem;
}

.product-process {
    background:
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px 44px),
        var(--graphite-dark);
    color: var(--white);
}

.product-process .section-heading-row p,
.product-process p {
    color: rgba(255, 255, 255, 0.68);
}

.product-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(100%, var(--content));
    margin: 36px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
}

.product-process-grid article {
    min-height: 220px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.055);
}

.product-process-grid span {
    display: block;
    margin-bottom: 42px;
    color: var(--yellow);
    font-weight: 950;
}

.product-process-grid h3 {
    margin-top: 0;
}

.product-detail-hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
    background: var(--graphite-dark);
}

.product-detail-hero__media,
.product-detail-hero__overlay {
    position: absolute;
    inset: 0;
}

.product-detail-hero__media img {
    width: 100%;
    height: 110%;
    object-fit: cover;
}

.product-detail-hero__overlay {
    background:
        radial-gradient(circle at 78% 22%, rgba(244, 176, 0, 0.22), transparent 25%),
        linear-gradient(90deg, rgba(15, 17, 19, 0.92), rgba(15, 17, 19, 0.62) 48%, rgba(15, 17, 19, 0.26)),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.075) 43px 44px);
}

.product-detail-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: end;
    gap: clamp(24px, 4vw, 42px);
    width: min(100% - clamp(36px, 8vw, 108px), var(--content));
    min-height: 100vh;
    margin: 0 auto;
    padding-top: 132px;
    padding-bottom: clamp(34px, 6vw, 72px);
}

.product-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

.product-hero-copy {
    display: grid;
    gap: 18px;
}

.product-hero-copy h1 {
    max-width: 860px;
    margin: 0;
}

.product-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.1rem;
}

.product-back-link {
    width: max-content;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 850;
}

.product-hero-panel {
    display: grid;
    gap: 16px;
    padding: 22px;
    background: rgba(15, 17, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.product-hero-panel span {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-hero-panel strong {
    font-size: 1.18rem;
}

.product-hero-panel ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
}

.product-hero-panel li::marker {
    color: var(--yellow);
}

.product-hero-rail {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.55fr) minmax(170px, 0.55fr);
    gap: 12px;
    align-items: stretch;
}

.product-hero-rail figure {
    position: relative;
    min-height: 180px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.product-hero-rail figure.is-main {
    min-height: 230px;
}

.product-hero-rail img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.product-hero-rail figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 17, 19, 0.28));
    pointer-events: none;
}

.product-detail-shell,
.product-gallery-section,
.product-related-section,
.product-detail-cta {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 58px);
    width: min(100%, var(--content));
    margin: 0 auto;
    padding-top: 84px;
    padding-bottom: 90px;
}

.product-sticky-summary {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
    align-self: start;
    padding: 24px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(244, 176, 0, 0.16), transparent 36%),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.055) 35px 36px),
        var(--graphite-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-sticky-summary span,
.product-sticky-summary li::marker {
    color: var(--yellow);
}

.product-sticky-summary span {
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-sticky-summary h2 {
    margin: 0;
    font-size: 1.45rem;
}

.product-sticky-summary ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.product-sticky-summary a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 950;
}

.product-detail-main {
    display: grid;
    gap: 72px;
}

.product-benefit-grid,
.product-variant-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.product-benefit-grid article,
.product-variant-grid article {
    position: relative;
    min-height: 230px;
    padding: 26px;
    overflow: hidden;
    background: var(--white);
}

.product-benefit-grid article::after,
.product-variant-grid article::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-right: 2px solid rgba(244, 176, 0, 0.45);
    border-bottom: 2px solid rgba(244, 176, 0, 0.45);
    opacity: 0.65;
}

.product-benefit-grid span,
.product-variant-grid span,
.product-alternating span {
    display: block;
    margin-bottom: 28px;
    color: var(--yellow-hover);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-benefit-grid p,
.product-variant-grid p,
.product-alternating p {
    color: var(--text-muted);
}

.product-spec-matrix {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 1px;
    overflow: hidden;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.product-spec-matrix > div,
.product-spec-matrix dl {
    margin: 0;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.14), transparent 34%),
        var(--graphite-dark);
}

.product-spec-matrix span {
    display: block;
    margin-bottom: 28px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-spec-matrix h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.product-spec-matrix dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
}

.product-spec-matrix dl div {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.product-spec-matrix dt {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-spec-matrix dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 760;
}

.product-alternating {
    display: grid;
    gap: 22px;
}

.product-alternating article {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(22px, 4vw, 46px);
    align-items: center;
    padding: clamp(20px, 3vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.product-alternating article > div {
    display: grid;
    gap: 14px;
}

.product-alternating article a {
    display: inline-flex;
    width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 900;
}

.product-alternating article.is-reversed {
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.product-alternating article.is-reversed > div {
    order: 2;
}

.product-alternating figure {
    min-height: 360px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--steel-soft);
}

.product-alternating img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.product-visual-band {
    padding: 86px clamp(18px, 4vw, 54px);
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(244, 176, 0, 0.16), transparent 28%),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.04) 43px 44px),
        var(--graphite-dark);
}

.product-visual-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(24px, 5vw, 70px);
    width: min(100%, var(--content));
    margin: 0 auto;
    align-items: center;
}

.product-visual-band figure {
    min-height: 460px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.product-visual-band img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.product-visual-band span {
    color: var(--yellow);
    font-weight: 950;
    text-transform: uppercase;
}

.product-visual-band p {
    color: rgba(255, 255, 255, 0.68);
}

.product-variants {
    padding: 76px clamp(18px, 4vw, 54px) 82px;
    background: var(--off-white);
}

.product-variants > .section-heading-row,
.product-variant-grid {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.product-color-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.product-color-stack span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 9px;
    color: var(--graphite);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.76rem;
    font-weight: 850;
}

.product-color-stack span::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--swatch);
    border: 1px solid rgba(15, 17, 19, 0.18);
    border-radius: 50%;
}

.product-variant-grid {
    margin-top: 34px;
}

.product-gallery-section,
.product-related-section {
    padding-top: 76px;
    padding-bottom: 82px;
}

.product-gallery-section {
    background: var(--white);
}

.product-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, var(--content));
    margin: 36px auto 0;
}

.product-detail-gallery figure {
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--steel-soft);
}

.product-detail-gallery figure.is-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.product-detail-gallery img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.product-detail-gallery figure:hover img {
    transform: scale(1.04);
}

.product-related-section {
    background: var(--steel-soft);
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, var(--content));
    margin: 34px auto 0;
}

.product-related-grid a {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(108px, 1fr);
    gap: 14px;
    min-height: 176px;
    padding: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15, 17, 19, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-related-grid a:hover {
    border-color: rgba(244, 176, 0, 0.62);
    box-shadow: 0 22px 48px rgba(15, 17, 19, 0.12);
    transform: translateY(-3px);
}

.product-related-grid span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 4px 0 2px 4px;
}

.product-related-grid small {
    color: var(--yellow-hover);
    font-size: 0.76rem;
    font-weight: 950;
    line-height: 1.25;
    text-transform: uppercase;
}

.product-related-grid strong {
    font-size: 1.04rem;
    line-height: 1.14;
}

.product-related-grid figure {
    position: relative;
    min-height: 146px;
    margin: 0;
    overflow: hidden;
    background: var(--steel-soft);
    border-radius: calc(var(--radius) - 1px);
}

.product-related-grid figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.16), transparent 42%),
        linear-gradient(180deg, transparent, rgba(15, 17, 19, 0.18));
    pointer-events: none;
}

.product-related-grid img {
    width: 100%;
    height: 100%;
    min-height: 146px;
    object-fit: cover;
    transition: transform 420ms ease;
}

.product-related-grid a:hover img {
    transform: scale(1.06);
}

.product-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 76px;
    padding-bottom: 76px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.18), transparent 34%),
        var(--graphite-dark);
}

.product-detail-cta > div {
    max-width: 780px;
}

.product-detail-cta span {
    color: var(--yellow);
    font-weight: 950;
    text-transform: uppercase;
}

.product-detail-cta h2 {
    margin-bottom: 12px;
}

.product-detail-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.portfolio-hero,
.portfolio-intro,
.portfolio-catalog,
.portfolio-cta {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.portfolio-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: end;
    min-height: 92vh;
    padding-top: 138px;
    padding-bottom: 76px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 22%, rgba(244, 176, 0, 0.2), transparent 28%),
        repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.055) 45px 46px),
        var(--graphite-dark);
}

.portfolio-hero__copy,
.portfolio-hero__media {
    width: min(100%, var(--content));
}

.portfolio-hero__copy {
    justify-self: end;
    display: grid;
    gap: 22px;
    max-width: 760px;
}

.portfolio-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.portfolio-hero p:not(.eyebrow) {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.portfolio-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
}

.portfolio-hero__stats span {
    display: grid;
    gap: 4px;
    min-height: 92px;
    padding: 16px;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.portfolio-hero__stats strong {
    color: var(--yellow);
    font-size: 1.45rem;
    line-height: 1;
}

.portfolio-hero__media {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.52fr);
    gap: 14px;
    min-height: 600px;
}

.portfolio-hero__media figure {
    position: relative;
    min-height: 292px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.portfolio-hero__media figure.is-main {
    grid-row: span 2;
}

.portfolio-hero__media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.portfolio-hero__media figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 38%, rgba(15, 17, 19, 0.48)),
        repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.06) 39px 40px);
    pointer-events: none;
}

.portfolio-filter {
    position: sticky;
    top: 72px;
    z-index: 12;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px clamp(18px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.portfolio-filter a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 8px 12px;
    color: var(--graphite);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.portfolio-filter a:hover,
.portfolio-filter a:focus-visible,
.portfolio-filter a.is-active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-1px);
}

.portfolio-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
    gap: clamp(28px, 7vw, 90px);
    align-items: end;
    padding-top: 76px;
    padding-bottom: 48px;
    background: var(--white);
}

.portfolio-intro > * {
    width: min(100%, var(--content));
}

.portfolio-intro span,
.portfolio-category__head span,
.portfolio-cta span {
    display: block;
    margin-bottom: 14px;
    color: var(--yellow-hover);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.portfolio-intro h2 {
    max-width: 850px;
}

.portfolio-intro p {
    margin: 0;
    color: var(--text-muted);
}

.portfolio-catalog {
    display: grid;
    gap: 1px;
    padding-bottom: 1px;
    background: var(--line);
}

.portfolio-category {
    display: grid;
    gap: 34px;
    padding: clamp(58px, 8vw, 96px) 0;
    background:
        linear-gradient(90deg, rgba(23, 25, 28, 0.035) 1px, transparent 1px),
        var(--off-white);
    background-size: 44px 44px;
}

.portfolio-category--steel {
    background-color: #f2f4f5;
}

.portfolio-category--green {
    background-color: #f4f7f4;
}

.portfolio-category--amber {
    background-color: #f8f6ef;
}

.portfolio-category__head,
.portfolio-masonry {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.portfolio-category__head {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.56fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: end;
}

.portfolio-category__head h2 {
    margin: 0;
}

.portfolio-category__head p {
    margin: 0;
    color: var(--text-muted);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 12px;
}

.portfolio-shot {
    position: relative;
    display: grid;
    min-height: 300px;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--graphite-dark);
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 17, 19, 0.12);
    cursor: pointer;
    isolation: isolate;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.portfolio-shot.is-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 612px;
}

.portfolio-shot.is-wide {
    grid-column: span 2;
}

.portfolio-shot.is-tall {
    min-height: 460px;
}

.portfolio-shot:hover,
.portfolio-shot:focus-visible {
    box-shadow: 0 28px 70px rgba(15, 17, 19, 0.2);
    transform: translateY(-3px);
}

.portfolio-shot img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.portfolio-shot:hover img,
.portfolio-shot:focus-visible img {
    transform: scale(1.045) rotate(0.35deg);
}

.portfolio-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(15, 17, 19, 0.06), rgba(15, 17, 19, 0.76)),
        linear-gradient(90deg, rgba(15, 17, 19, 0.34), transparent 54%);
}

.portfolio-shot span {
    display: flex;
    gap: 14px;
    align-self: end;
    align-items: end;
    justify-content: space-between;
    padding: 18px;
    text-align: left;
}

.portfolio-shot small {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
}

.portfolio-shot strong {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.14;
}

.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 76px;
    padding-bottom: 76px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(244, 176, 0, 0.18), transparent 34%),
        repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.04) 45px 46px),
        var(--graphite-dark);
}

.portfolio-cta > div {
    max-width: 820px;
}

.portfolio-cta span {
    color: var(--yellow);
}

.portfolio-cta h2 {
    margin: 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 54px);
    color: var(--white);
    background:
        radial-gradient(circle at 70% 18%, rgba(244, 176, 0, 0.16), transparent 30%),
        rgba(15, 17, 19, 0.9);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
    transition: opacity 220ms ease, backdrop-filter 220ms ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(18px);
}

.gallery-lightbox figure {
    position: relative;
    display: grid;
    gap: 14px;
    width: min(1120px, 100%);
    max-width: min(1100px, 100%);
    max-height: 92vh;
    margin: 0;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 240ms ease, transform 240ms ease;
}

.gallery-lightbox.is-open figure {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-lightbox__image-wrap {
    display: grid;
    min-height: min(74vh, 760px);
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    cursor: grab;
    touch-action: pan-y;
}

.gallery-lightbox__image-wrap:active {
    cursor: grabbing;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: min(74vh, 760px);
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius);
    user-select: none;
    transition: opacity 180ms ease, transform 220ms ease;
}

.gallery-lightbox.is-changing img {
    opacity: 0;
    transform: translateX(var(--gallery-shift, 18px)) scale(0.985);
}

.gallery-lightbox figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 850;
}

.gallery-lightbox figcaption span {
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 950;
    white-space: nowrap;
}

.gallery-lightbox figcaption strong {
    font-size: 1rem;
    line-height: 1.25;
    text-align: right;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-lightbox__close {
    top: 18px;
    right: 18px;
}

.gallery-lightbox__nav {
    top: 50%;
    z-index: 1;
    width: 56px;
    height: 76px;
    color: var(--graphite);
    background: var(--yellow);
    border-color: var(--yellow);
    font-size: 2.4rem;
    font-weight: 700;
    transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
    left: clamp(14px, 3vw, 34px);
}

.gallery-lightbox__nav--next {
    right: clamp(14px, 3vw, 34px);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    color: var(--graphite);
    background: var(--yellow);
    border-color: var(--yellow);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
}

.gallery-card {
    overflow: hidden;
}

.gallery-card h3,
.gallery-card p {
    padding-right: 20px;
    padding-left: 20px;
}

.gallery-visual {
    display: grid;
    min-height: 220px;
    place-items: center;
    background: var(--steel);
}

.gallery-card-green .gallery-visual {
    background: #4f665f;
}

.gallery-card-amber .gallery-visual {
    background: var(--yellow-hover);
}

.gallery-visual span {
    width: 54%;
    aspect-ratio: 1.6;
    border: 14px solid rgba(255, 255, 255, 0.78);
    border-radius: 4px;
    transform: skew(-10deg);
}

.contact-hero,
.contact-quick-actions,
.contact-main,
.contact-map-section {
    padding-right: clamp(18px, 4vw, 54px);
    padding-left: clamp(18px, 4vw, 54px);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
    min-height: 72vh;
    padding-top: 126px;
    padding-bottom: 58px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 24%, rgba(244, 176, 0, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(15, 17, 19, 0.88), rgba(15, 17, 19, 0.68)),
        repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.055) 45px 46px),
        var(--graphite-dark);
}

.contact-hero__copy {
    display: grid;
    gap: 22px;
    max-width: 860px;
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6.6vw, 6.6rem);
}

.contact-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.1rem;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.contact-hero__actions .button-secondary {
    color: var(--graphite);
}

.contact-hero__panel {
    display: grid;
    gap: 16px;
    padding: 24px;
    background: rgba(15, 17, 19, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.contact-hero__panel span,
.contact-info-card span,
.contact-schedule span,
.contact-social span,
.contact-form-panel span,
.contact-map-copy span {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.contact-hero__panel a {
    color: var(--white);
    font-size: 1.22rem;
    font-weight: 930;
    line-height: 1.16;
}

.contact-hero__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
    background: var(--line);
}

.contact-quick-actions a {
    position: relative;
    display: grid;
    gap: 12px;
    min-height: 168px;
    padding: 22px;
    overflow: hidden;
    background: var(--white);
}

.contact-quick-actions a::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-right: 2px solid rgba(244, 176, 0, 0.45);
    border-bottom: 2px solid rgba(244, 176, 0, 0.45);
    transition: transform 180ms ease;
}

.contact-quick-actions a:hover::after {
    transform: translate(4px, 4px);
}

.contact-quick-actions span {
    color: var(--yellow-hover);
    font-weight: 950;
}

.contact-quick-actions strong {
    align-self: end;
    font-size: 1.25rem;
    line-height: 1.12;
}

.contact-quick-actions p {
    margin: 0;
    color: var(--text-muted);
}

.contact-main {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
    padding-top: 72px;
    padding-bottom: 82px;
    background: var(--off-white);
}

.contact-info-stack,
.contact-form-panel {
    width: min(100%, var(--content));
}

.contact-info-stack {
    display: grid;
    gap: 14px;
    align-self: start;
}

.contact-info-card,
.contact-schedule,
.contact-social,
.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 17, 19, 0.08);
}

.contact-info-card {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.contact-info-card span,
.contact-schedule span,
.contact-social span,
.contact-form-panel span,
.contact-map-copy span {
    color: var(--yellow-hover);
}

.contact-info-card h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.contact-info-card p {
    margin: 0;
    color: var(--text-muted);
}

.contact-info-card a {
    display: inline-flex;
    width: max-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    color: var(--graphite);
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 900;
}

.contact-schedule,
.contact-social {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.contact-schedule dl {
    display: grid;
    gap: 1px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.contact-schedule dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    background: var(--white);
}

.contact-schedule dt {
    color: var(--text-muted);
    font-weight: 800;
}

.contact-schedule dd {
    margin: 0;
    font-weight: 950;
}

.contact-social div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 9px 12px;
    color: var(--graphite);
    background: var(--steel-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.contact-form-panel {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 4vw, 34px);
    scroll-margin-top: 96px;
}

.contact-form-panel > div {
    display: grid;
    gap: 12px;
}

.contact-form-panel h2 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-form-panel p {
    max-width: 640px;
    margin: 0;
    color: var(--text-muted);
}

.contact-map-section {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    padding-top: 72px;
    padding-bottom: 82px;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 22%, rgba(244, 176, 0, 0.16), transparent 28%),
        repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.045) 45px 46px),
        var(--graphite-dark);
}

.contact-map-copy h2 {
    margin: 0 0 14px;
}

.contact-map-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.contact-map-frame {
    min-height: 520px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    filter: grayscale(0.72) contrast(1.08);
}

.contact-section > div {
    max-width: 760px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--graphite);
    background: var(--white);
}

.contact-form small {
    color: #a43a2b;
    font-weight: 700;
}

.notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
}

.notice-success {
    color: #1d513d;
    background: #dceee6;
}

.notice-error {
    color: #842b20;
    background: #f7ddd8;
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 220ms ease;
}

.quote-modal.is-open {
    pointer-events: auto;
    opacity: 1;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 18%, rgba(244, 176, 0, 0.22), transparent 30%),
        rgba(15, 17, 19, 0.72);
    backdrop-filter: blur(10px);
}

.quote-modal__panel {
    position: relative;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 26px;
    width: min(100%, 760px);
    padding: clamp(18px, 3vw, 30px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    transform: translateY(22px) scale(0.97);
    transition: transform 260ms ease;
}

.quote-modal.is-open .quote-modal__panel {
    transform: translateY(0) scale(1);
}

.quote-modal__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(244, 176, 0, 0.1), transparent 34%),
        repeating-linear-gradient(90deg, transparent 0 38px, rgba(15, 17, 19, 0.045) 39px 40px);
}

.quote-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--graphite);
    background: var(--steel-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.quote-modal__visual,
.quote-modal__copy,
.quote-modal__form {
    position: relative;
    z-index: 1;
}

.quote-modal__visual {
    display: grid;
    align-content: end;
    gap: 12px;
    min-height: 300px;
    padding: 18px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(244, 176, 0, 0.22), transparent 42%),
        repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px),
        var(--graphite-dark);
    border-radius: var(--radius);
}

.quote-modal__visual span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--graphite);
    background: var(--yellow);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    font-size: 1.45rem;
    font-weight: 900;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.quote-modal__visual svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quote-modal__visual span:nth-child(2) {
    justify-self: center;
    background: var(--white);
}

.quote-modal__visual span:nth-child(3) {
    justify-self: end;
}

.quote-modal__copy {
    display: grid;
    align-content: end;
    gap: 12px;
    padding-right: 42px;
}

.quote-modal__copy span {
    color: var(--yellow-hover);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.quote-modal__copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.quote-modal__copy p {
    margin: 0;
    color: var(--text-muted);
}

.quote-modal__form {
    grid-column: 2;
    display: grid;
    gap: 14px;
}

.quote-modal__form label {
    display: grid;
    gap: 7px;
    font-weight: 850;
}

.quote-modal__form input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--graphite);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.quote-modal__form small,
.quote-modal__status {
    min-height: 18px;
    margin: 0;
    color: #a43a2b;
    font-size: 0.86rem;
    font-weight: 760;
}

.quote-modal__status.is-success {
    color: #1d513d;
}

.quote-modal__form.is-sending {
    opacity: 0.72;
    pointer-events: none;
}

.quote-list-page {
    min-height: 100vh;
    padding: 140px clamp(18px, 4vw, 54px) 80px;
    background: var(--off-white);
}

.quote-list-page__head {
    display: grid;
    gap: 14px;
    width: min(100%, var(--content));
    margin: 0 auto 32px;
}

.quote-list-page__head h1 {
    max-width: 760px;
    margin: 0;
    color: var(--graphite);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.quote-list-page__head p:not(.eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
}

.quote-list-table {
    width: min(100%, var(--content));
    margin: 0 auto;
    overflow: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 17, 19, 0.08);
}

.quote-list-table table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.quote-list-table th,
.quote-list-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.quote-list-table th {
    color: var(--graphite);
    background: var(--steel-soft);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.quote-list-table td {
    color: var(--text-muted);
    font-weight: 720;
}

.quote-list-table a {
    color: var(--graphite);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.admin-page {
    min-height: 100vh;
    padding: 140px clamp(18px, 4vw, 54px) 80px;
    background: var(--off-white);
}

.admin-page__head,
.admin-auth-panel,
.admin-toolbar,
.admin-grid,
.admin-page > .notice {
    width: min(100%, var(--content));
    margin-right: auto;
    margin-left: auto;
}

.admin-page__head {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.admin-page__head h1 {
    margin: 0;
    color: var(--graphite);
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.admin-page__head p:not(.eyebrow),
.admin-auth-panel p,
.admin-card__head p,
.admin-empty {
    color: var(--text-muted);
}

.admin-auth-panel,
.admin-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(15, 17, 19, 0.08);
}

.admin-auth-panel {
    max-width: 560px;
    margin-left: max(calc((100% - var(--content)) / 2), 0px);
}

.admin-auth-panel h2,
.admin-card h2 {
    margin-top: 0;
}

.admin-auth-panel form,
.admin-password-form {
    display: grid;
    gap: 14px;
}

.admin-auth-panel label,
.admin-password-form label,
.admin-inline-form label {
    display: grid;
    gap: 6px;
    color: var(--graphite);
    font-weight: 850;
}

.admin-auth-panel input,
.admin-password-form input,
.admin-inline-form input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--graphite);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 5px;
}

.admin-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 18px;
    align-items: start;
}

.admin-card--wide {
    min-width: 0;
}

.admin-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-table {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-table table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.admin-table th {
    color: var(--graphite);
    background: var(--steel-soft);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--text-muted);
    font-weight: 720;
}

.admin-table td strong,
.admin-table td span,
.admin-table td small {
    display: block;
}

.admin-table td small {
    max-width: 280px;
    overflow-wrap: anywhere;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.admin-inline-form {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(130px, 0.7fr) minmax(150px, 1fr) auto;
    gap: 8px;
    align-items: end;
    min-width: 580px;
}

.admin-inline-form label span {
    font-size: 0.72rem;
    text-transform: uppercase;
}

.admin-inline-form button,
.admin-delete-button {
    min-height: 42px;
    padding: 9px 12px;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    font-weight: 900;
}

.admin-inline-form button {
    color: var(--graphite);
    background: var(--yellow);
}

.admin-delete-button {
    color: #7a1f14;
    background: #ffe5df;
}

.admin-empty {
    padding: 22px;
    background: var(--steel-soft);
    border-radius: var(--radius);
    font-weight: 780;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        color: var(--graphite);
        background: rgba(255, 255, 255, 0.94);
        border-bottom-color: var(--line);
        backdrop-filter: blur(18px);
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 82;
        justify-self: end;
        order: 3;
    }

    .header-actions {
        position: relative;
        z-index: 82;
        justify-self: end;
        order: 2;
    }

    .header-actions .language-switch {
        display: none;
    }

    .header-cta {
        min-height: 44px;
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-rows: 1fr auto;
        width: min(420px, calc(100vw - 28px));
        height: 100vh;
        min-height: 100dvh;
        padding: 96px 22px 22px;
        color: var(--white);
        background:
            linear-gradient(145deg, rgba(244, 176, 0, 0.14), transparent 38%),
            repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.045) 43px 44px),
            var(--graphite-dark);
        border-left: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
        transform: translateX(104%);
        transition: transform 260ms ease;
    }

    .nav-panel.is-open {
        transform: translateX(0);
    }

    .site-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: start;
        gap: 8px;
    }

    .site-nav a {
        position: relative;
        justify-content: flex-start;
        min-height: 58px;
        padding: 14px 16px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: clamp(1.2rem, 6vw, 1.65rem);
        font-weight: 900;
        opacity: 1;
    }

    .site-nav a::after {
        content: "";
        position: absolute;
        right: 16px;
        width: 10px;
        height: 10px;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        opacity: 0.55;
        transform: rotate(45deg);
    }

    .site-nav a:hover,
    .site-nav a.is-active,
    .site-header.is-scrolled .site-nav a:hover,
    .site-header.is-scrolled .site-nav a.is-active,
    .site-header.is-menu-open .site-nav a:hover,
    .site-header.is-menu-open .site-nav a.is-active {
        color: var(--graphite);
        background: var(--yellow);
        border-color: var(--yellow);
    }

    .nav-panel-language {
        align-self: end;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .nav-panel-language a,
    .site-header.is-scrolled .nav-panel-language a:hover,
    .site-header.is-scrolled .nav-panel-language a.is-active,
    .site-header.is-menu-open .nav-panel-language a:hover,
    .site-header.is-menu-open .nav-panel-language a.is-active {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        font-weight: 850;
        opacity: 1;
    }

    .nav-panel-language a.is-active,
    .nav-panel-language a:hover,
    .site-header.is-scrolled .nav-panel-language a.is-active,
    .site-header.is-scrolled .nav-panel-language a:hover,
    .site-header.is-menu-open .nav-panel-language a.is-active,
    .site-header.is-menu-open .nav-panel-language a:hover {
        color: var(--graphite);
        background: var(--yellow);
        border-color: var(--yellow);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: block;
        pointer-events: none;
        background: rgba(15, 17, 19, 0);
        border: 0;
        opacity: 0;
        transition: opacity 240ms ease, background 240ms ease;
    }

    .site-header.is-menu-open .nav-backdrop {
        pointer-events: auto;
        background: rgba(15, 17, 19, 0.58);
        opacity: 1;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 136px;
        padding-bottom: 178px;
    }

    .hero-spec-panel {
        max-width: 520px;
    }

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

    .product-showcase,
    .production-layout,
    .about-hero,
    .about-intro,
    .about-systems,
    .products-hero-grid,
    .project-grid,
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .production-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .product-hero-layout,
    .product-visual-band__inner {
        grid-template-columns: 1fr;
    }

    .product-hero-panel {
        max-width: 520px;
    }

    .product-sticky-summary {
        position: static;
    }

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

    .product-alternating article,
    .product-alternating article.is-reversed {
        grid-template-columns: 1fr;
    }

    .product-alternating article.is-reversed > div {
        order: 0;
    }

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

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

    .product-variants > .section-heading-row {
        grid-template-columns: 1fr;
    }

    .product-color-stack {
        justify-content: flex-start;
    }

    .portfolio-hero,
    .portfolio-intro,
    .portfolio-category__head {
        grid-template-columns: 1fr;
    }

    .portfolio-hero {
        min-height: auto;
    }

    .portfolio-hero__copy {
        justify-self: start;
    }

    .portfolio-hero__media {
        grid-template-columns: 1fr 1fr;
        min-height: 420px;
    }

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

    .contact-hero,
    .contact-main,
    .contact-map-section {
        grid-template-columns: 1fr;
    }

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

    .contact-hero {
        min-height: auto;
    }

    .contact-hero__panel {
        max-width: 560px;
    }

    .category-card-large,
    .project-card-wide {
        grid-column: span 1;
    }

    .why-grid,
    .faq-grid,
    .section-heading-row {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: auto;
    }

    .about-hero__copy,
    .about-hero__media {
        justify-self: stretch;
    }

    .about-principles__grid,
    .about-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header {
        gap: 10px;
        min-height: 72px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .brand-text {
        display: none;
    }

    .nav-panel {
        width: min(390px, calc(100vw - 18px));
        padding: 88px 16px 16px;
    }

    .hero-grid {
        width: min(100% - 28px, var(--content));
        padding-top: 118px;
        padding-bottom: 210px;
    }

    .products-hero {
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .about-hero,
    .about-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 112px;
        padding-bottom: 58px;
    }

    .about-hero__copy h1 {
        font-size: 2.72rem;
    }

    .about-hero__actions {
        align-items: stretch;
    }

    .about-hero__actions .button {
        flex: 1 1 170px;
    }

    .about-hero__media {
        min-height: 460px;
    }

    .about-hero__main {
        inset: 0 0 26% 0;
    }

    .about-hero__small {
        right: 0;
        bottom: 0;
        width: 54%;
        height: 34%;
    }

    .about-hero__note {
        top: auto;
        right: auto;
        bottom: 22px;
        left: 14px;
        max-width: min(240px, 62%);
    }

    .about-intro,
    .about-systems,
    .about-cta {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .about-intro__text,
    .about-principles__grid article {
        padding: 20px;
    }

    .about-intro__text p {
        font-size: 1.38rem;
    }

    .about-metrics article {
        min-height: 132px;
        padding: 20px;
    }

    .about-principles__grid {
        grid-template-columns: 1fr;
    }

    .about-principles__grid article {
        min-height: 0;
    }

    .about-systems {
        padding-top: 0;
    }

    .about-systems figure {
        aspect-ratio: 1 / 1;
    }

    .about-systems ul {
        gap: 8px;
    }

    .about-systems li {
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .about-cta {
        margin-right: 14px;
        margin-bottom: 58px;
        margin-left: 14px;
        padding: 22px;
    }

    .products-hero-grid,
    .product-category-grid,
    .product-process-grid {
        grid-template-columns: 1fr;
    }

    .products-hero-media,
    .products-hero-media img {
        min-height: 360px;
    }

    .products-catalog,
    .product-process {
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .product-detail-hero,
    .product-detail-hero__content {
        min-height: 760px;
    }

    .product-detail-hero__content {
        width: min(100% - 28px, var(--content));
        padding-top: 112px;
        padding-bottom: 28px;
    }

    .product-hero-layout {
        gap: 20px;
    }

    .product-hero-copy {
        gap: 14px;
    }

    .product-hero-panel {
        padding: 18px;
    }

    .product-hero-rail {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .product-hero-rail figure,
    .product-hero-rail figure.is-main {
        min-height: 132px;
    }

    .product-hero-rail figure.is-main {
        grid-column: span 2;
    }

    .product-detail-shell,
    .product-gallery-section,
    .product-related-section,
    .product-detail-cta,
    .product-variants,
    .product-visual-band {
        padding-right: 14px;
        padding-left: 14px;
    }

    .product-detail-shell {
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .product-benefit-grid,
    .product-variant-grid,
    .product-related-grid,
    .product-detail-gallery,
    .product-spec-matrix dl {
        grid-template-columns: 1fr;
    }

    .product-spec-matrix > div,
    .product-spec-matrix dl div {
        padding: 20px;
    }

    .product-visual-band {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .product-visual-band figure,
    .product-visual-band img {
        min-height: 320px;
    }

    .product-variants {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .product-detail-gallery figure.is-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .product-alternating article {
        padding: 14px;
    }

    .product-alternating figure,
    .product-alternating img,
    .product-detail-gallery figure,
    .product-detail-gallery img {
        min-height: 280px;
    }

    .product-detail-cta {
        display: grid;
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .portfolio-hero,
    .portfolio-intro,
    .portfolio-catalog,
    .portfolio-cta {
        padding-right: 14px;
        padding-left: 14px;
    }

    .portfolio-hero {
        padding-top: 112px;
        padding-bottom: 44px;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .portfolio-hero__stats span {
        min-height: 74px;
        padding: 11px 8px;
        font-size: 0.68rem;
    }

    .portfolio-hero__stats strong {
        font-size: 1.08rem;
    }

    .portfolio-hero__media {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .portfolio-hero__media figure.is-main {
        grid-column: span 2;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-hero__media {
        min-height: auto;
    }

    .portfolio-hero__media figure {
        grid-row: span 1;
        min-height: 142px;
    }

    .portfolio-hero__media figure.is-main {
        min-height: 236px;
    }

    .portfolio-filter {
        top: 72px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .portfolio-intro {
        padding-top: 54px;
        padding-bottom: 34px;
    }

    .portfolio-category {
        padding-top: 54px;
        padding-bottom: 62px;
    }

    .portfolio-shot,
    .portfolio-shot.is-featured,
    .portfolio-shot.is-wide,
    .portfolio-shot.is-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 330px;
    }

    .portfolio-shot span {
        padding: 14px;
    }

    .portfolio-cta {
        display: grid;
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .gallery-lightbox {
        padding: 14px;
    }

    .gallery-lightbox__close {
        top: 12px;
        right: 12px;
    }

    .gallery-lightbox figure {
        gap: 10px;
    }

    .gallery-lightbox__image-wrap {
        min-height: 62vh;
    }

    .gallery-lightbox img {
        max-height: 62vh;
    }

    .gallery-lightbox figcaption {
        display: grid;
        gap: 6px;
        padding: 0 54px;
        text-align: center;
    }

    .gallery-lightbox figcaption strong {
        text-align: center;
    }

    .gallery-lightbox__nav {
        top: auto;
        bottom: 14px;
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        transform: none;
    }

    .gallery-lightbox__nav--prev {
        left: 14px;
    }

    .gallery-lightbox__nav--next {
        right: 14px;
    }

    .gallery-lightbox__nav:hover,
    .gallery-lightbox__nav:focus-visible {
        transform: none;
    }

    .contact-hero,
    .contact-quick-actions,
    .contact-main,
    .contact-map-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .contact-hero {
        padding-top: 104px;
        padding-bottom: 36px;
    }

    .contact-hero h1 {
        font-size: 2.42rem;
    }

    .contact-hero__panel,
    .contact-form-panel,
    .contact-info-card,
    .contact-schedule,
    .contact-social {
        padding: 18px;
    }

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

    .contact-quick-actions a {
        min-height: 142px;
        padding: 16px;
    }

    .contact-quick-actions strong {
        font-size: 1.02rem;
    }

    .contact-quick-actions p {
        font-size: 0.9rem;
    }

    .contact-main {
        padding-top: 44px;
        padding-bottom: 58px;
    }

    .contact-form-panel {
        gap: 18px;
        order: -1;
    }

    .contact-schedule dl div {
        display: grid;
        gap: 4px;
    }

    .contact-map-section {
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 360px;
    }

    .quote-modal {
        align-items: end;
        padding: 10px;
    }

    .quote-modal__panel {
        grid-template-columns: 1fr;
        gap: 18px;
        max-height: calc(100vh - 20px);
        overflow: auto;
        padding: 18px;
    }

    .quote-modal__visual {
        grid-template-columns: repeat(3, 1fr);
        min-height: 92px;
        align-content: center;
        padding: 14px;
    }

    .quote-modal__visual span,
    .quote-modal__visual span:nth-child(2),
    .quote-modal__visual span:nth-child(3) {
        justify-self: center;
        width: 48px;
        height: 48px;
        font-size: 1.22rem;
    }

    .quote-modal__copy {
        padding-right: 44px;
    }

    .quote-modal__form {
        grid-column: auto;
    }

    .quote-list-page {
        padding-top: 112px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .admin-page {
        padding: 112px 14px 58px;
    }

    .admin-auth-panel,
    .admin-grid,
    .admin-toolbar,
    .admin-page > .notice {
        width: 100%;
    }

    .admin-auth-panel {
        margin-left: 0;
        padding: 18px;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-card {
        padding: 18px;
    }

    .admin-toolbar {
        justify-content: stretch;
    }

    .admin-toolbar .button {
        width: 100%;
    }

    .admin-inline-form {
        min-width: 620px;
    }

    h1 {
        font-size: 2.72rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-trust span {
        padding: 13px 18px;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .scroll-indicator {
        display: none;
    }

    .home-section,
    .home-cta {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .advantage-grid,
    .product-showcase,
    .production-layout,
    .production-stats,
    .project-grid,
    .process-rail,
    .footer-inner,
    .card-grid,
    .gallery-grid,
    .values-grid,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .production-slider__stage {
        display: grid;
        gap: 10px;
        min-height: 0;
    }

    .production-slider__stage::before {
        inset: 10px;
    }

    .production-slider__frame {
        position: relative;
        inset: auto;
        min-height: 430px;
    }

    .production-slider__frame figcaption {
        right: 18px;
        bottom: 18px;
    }

    .production-slider__materials {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
    }

    .production-slider__thumbs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
        scrollbar-color: rgba(244, 176, 0, 0.72) rgba(255, 255, 255, 0.1);
    }

    .production-slider__thumb {
        flex: 0 0 92px;
        min-height: 82px;
    }

    .process-rail {
        position: relative;
        display: grid;
        gap: 14px;
        padding-left: 0;
        border-top: 0;
    }

    .process-rail::before {
        content: "";
        position: absolute;
        top: 18px;
        bottom: 18px;
        left: 23px;
        width: 1px;
        background: linear-gradient(180deg, var(--yellow), rgba(95, 104, 114, 0.18));
    }

    .process-step {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        min-height: 0;
        padding: 18px;
        background:
            linear-gradient(135deg, rgba(244, 176, 0, 0.08), transparent 36%),
            var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: 0 14px 34px rgba(15, 17, 19, 0.06);
    }

    .process-step::before {
        display: none;
    }

    .process-step span {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin: 0;
        color: var(--graphite);
        background: var(--yellow);
        border: 4px solid var(--white);
        border-radius: 50%;
        box-shadow: 0 10px 24px rgba(244, 176, 0, 0.24);
    }

    .process-step h3 {
        margin: 2px 0 8px;
    }

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

    .project-card {
        min-height: 360px;
    }

    .technical-item {
        grid-template-columns: 48px 1fr;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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