/* ==========================================================================
   Gamond — European Editorial Showroom Design System
   ========================================================================== */

:root {
    --color-bg: #faf7f2;
    --color-bg-elevated: #ffffff;
    --color-bg-muted: #f0ebe3;
    --color-bg-dark: #2c2825;
    --color-text: #2c2825;
    --color-text-secondary: #6b6560;
    --color-text-tertiary: #8a847c;
    --color-border: rgba(44, 40, 37, 0.12);
    --color-accent: #b8860b;
    --color-accent-hover: #9a7209;
    --color-accent-gold: #c9a227;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --text-hero: clamp(48px, 7.2vw, 96px);
    --text-section: clamp(40px, 5.2vw, 64px);
    --text-body: clamp(17px, 1.6vw, 19px);
    --text-nav: clamp(14px, 1.2vw, 15px);
    --text-btn: clamp(13px, 1.1vw, 14px);
    --text-label: clamp(12px, 1vw, 13px);
    --text-product-name: clamp(17px, 1.5vw, 19px);
    --text-product-spec: clamp(14px, 1.2vw, 15px);
    --header-height: 64px;
    --header-bg-scrolled: rgba(250, 247, 242, 0.88);
    --header-bg-top: #000000;
    --header-border-scrolled: rgba(44, 40, 37, 0.1);
    --header-border-top: rgba(255, 255, 255, 0.12);
    --header-shadow-scrolled: none;
    --header-shadow-top: inset 0 0.5px 0 rgba(255, 255, 255, 0.1), 0 4px 24px rgba(44, 40, 37, 0.18);
    --space-section: clamp(48px, 6vw, 64px);
    --space-gutter: clamp(20px, 5vw, 40px);
    --showroom-gap: clamp(24px, 3vw, 40px);
    --radius: 6px;
    --radius-sm: 4px;
    --shadow-soft: none;
    --shadow-card: none;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition: all 0.3s var(--ease);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Homepage section scroll snap */
html.page-home {
    --space-section: clamp(48px, 6vw, 64px);
    scroll-snap-type: y mandatory;
    scroll-padding-top: var(--header-height);
}

html.page-home main > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

html.page-home main > section.hero-slider {
    min-height: 100svh;
}

html.page-home .home-contact-strip {
    padding: clamp(48px, 6vw, 64px) 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    html.page-home {
        scroll-snap-type: none;
    }

    html.page-home main > section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Typography — Cormorant Garamond for editorial headlines, DM Sans for everything else */
.eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.display-title,
.section-title,
.page-title {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.display-title {
    font-size: var(--text-hero);
    line-height: 1.0;
    color: var(--color-text);
}

.section-title {
    font-size: var(--text-section);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.body-large {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.body-text {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 17px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

/* Layout */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

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

.section-muted {
    background-color: var(--color-bg-muted);
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: #f5f5f7;
}

.section-dark .body-large,
.section-dark .body-text {
    color: #a1a1a6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--text-btn);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 44px;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
}

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

.btn-ghost {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    background-color: var(--color-bg-muted);
    border-color: var(--color-accent);
}

.see-more {
    display: flex;
    justify-content: center;
    margin-top: clamp(32px, 4vw, 48px);
}

.see-more[hidden] {
    display: none;
}

.see-more__btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-accent-hover);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    min-height: 44px;
    padding: 0 28px;
    cursor: pointer;
    transition: var(--transition);
}

.see-more__btn:hover,
.see-more__btn:focus-visible {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-bg-muted);
}

.product-card--showroom[hidden],
.magazine-product-entry[hidden],
.magazine-chapter[hidden] {
    display: none !important;
}

.text-link,
.category-card-link,
.news-read-more,
.news-link,
.product-cta,
.product-code {
    color: var(--color-accent-hover);
}

.text-link {
    font-size: 17px;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition:
        background 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease),
        transform 0.35s var(--ease);
}

/* Hide header on scroll-down (mobile only) */
@media (max-width: 768px) {
    .site-header.header-hidden {
        transform: translateY(-100%);
    }
}

.site-header.scrolled {
    background: var(--header-bg-scrolled);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--header-border-scrolled);
    box-shadow: var(--header-shadow-scrolled);
}

.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark { display: block; }

.site-header.scrolled .header-menu a {
    color: var(--color-text);
    font-weight: 500;
}

.site-header.scrolled .header-menu a:hover {
    color: var(--color-accent);
}

.site-header.scrolled .header-menu a.active {
    color: var(--color-accent);
}

.site-header.scrolled .header-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

.site-header.scrolled .menu-bar {
    background-color: var(--color-text);
}

/* Apple-style grey glass over hero (homepage, not scrolled) */
.site-header:not(.scrolled) {
    background: var(--header-bg-top);
    border-bottom: 0.5px solid var(--header-border-top);
}

/* Light header over dark hero slider (homepage top) */
.site-header:not(.scrolled) .logo-light { display: block; }
.site-header:not(.scrolled) .logo-dark { display: none; }
.site-header:not(.scrolled) .header-menu a {
    color: rgba(255, 255, 255, 0.95);
}
.site-header:not(.scrolled) .header-menu a:hover,
.site-header:not(.scrolled) .header-menu a.active {
    color: #fff;
}
.site-header:not(.scrolled) .header-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}
.site-header:not(.scrolled) .menu-bar { background-color: #fff; }
.site-header:not(.scrolled) .btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.site-header:not(.scrolled) .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-gutter);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.header-logo .logo-img {
    height: 36px;
    width: auto;
}

.logo-light { display: none; }
.logo-dark { display: block; }

.header-nav {
    display: flex;
    justify-content: flex-end;
}

.header-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.header-menu a {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--text-nav);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.header-menu a:hover,
.header-menu a.active {
    color: var(--color-text);
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn-ghost {
    font-size: 13px;
    min-height: 32px;
    padding: 0 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* Hamburger → X animation when menu is open */
.menu-toggle.is-active .menu-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.is-active .menu-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .menu-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(251, 251, 253, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
}

.menu-overlay.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-close {
    display: none;
}

.overlay-menu {
    list-style: none;
    padding: 24px var(--space-gutter) 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.overlay-menu a {
    display: block;
    font-size: 21px;
    font-weight: 500;
    padding: 12px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overlay-menu a:hover {
    color: var(--color-accent);
}

/* Overlay CTA area (Contact button + external links like Telegram) */
.overlay-cta {
    margin-top: 8px;
    padding: 16px var(--space-gutter) 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */
.site-footer {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    padding: 64px 0 0;
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter) 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-brand .footer-logo .logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline,
.footer-links a,
.footer-col-title,
.footer-contact h3,
.copyright-text,
.social-links a {
    color: #ffffff;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 280px;
    line-height: 1.5;
    opacity: 0.88;
}

.footer-col-title,
.footer-contact h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.72;
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--color-accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px var(--space-gutter);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.88;
    transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright-text {
    font-size: 12px;
    opacity: 0.72;
}

.footer-bottom-container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.88;
}

.social-links a:hover {
    opacity: 1;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   Homepage
   ========================================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 920px;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.85s var(--ease);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 8s var(--ease);
}

.hero-slide.is-active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.75) 0%,
        rgba(44, 40, 37, 0.25) 45%,
        rgba(44, 40, 37, 0.35) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 640px;
    padding: calc(var(--header-height) + 40px) var(--space-gutter) 100px;
    color: #fff;
}

.hero-slide-content .eyebrow {
    color: var(--color-accent-gold);
}

.hero-slide-content .display-title {
    color: #fff;
    margin-bottom: 16px;
}

.hero-slide-content .body-large {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
}

.hero-slide-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-slide-actions .btn-primary {
    background: var(--color-accent);
    color: #fff;
}

.hero-slide-actions .btn-primary:hover {
    background: var(--color-accent-hover);
}

.hero-slide-actions .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-slide-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.hero-slider-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    list-style: none;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dot.active {
    background: var(--color-accent-gold);
    transform: scale(1.15);
}

.hero-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 520px;
        max-height: none;
        height: 92vh;
    }

    .hero-slide-content {
        padding-bottom: 100px;
    }

    .hero-slider-arrow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider-track {
        transition: none;
    }

    .hero-slide-bg {
        transition: none;
        transform: scale(1);
    }
}

.feature-statement {
    text-align: center;
    padding: var(--space-section) 0;
}

.feature-statement .container {
    max-width: 720px;
}

.feature-statement .section-title {
    margin-bottom: 20px;
}

.products-section {
    padding: var(--space-section) 0;
    background-color: var(--color-bg-elevated);
}

.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-header .section-title {
    margin-bottom: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.category-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.category-card-body {
    padding: 20px;
}

.category-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.category-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
}

.category-card-link:hover {
    text-decoration: underline;
}

.kitchen-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--color-bg-muted);
}

.kitchen-split-image {
    overflow: hidden;
}

.kitchen-split-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.kitchen-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 8vw, 64px);
}

.kitchen-split-content .section-title {
    margin-bottom: 16px;
}

.kitchen-split-content .body-text {
    margin-bottom: 28px;
}

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

.news-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-header .section-title {
    margin-bottom: 12px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-soft);
}

.news-image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.news-card:hover .news-image {
    transform: scale(1.03);
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
}

.news-card-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--color-text);
}

.news-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    flex-grow: 1;
}

.news-read-more,
.news-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: auto;
}

.news-read-more:hover,
.news-link:hover {
    text-decoration: underline;
}

.references-section {
    padding: var(--space-section) 0;
    background-color: var(--color-bg-muted);
}

.references-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.references-header .section-title {
    margin-bottom: 12px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reference-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.reference-card:hover {
    box-shadow: var(--shadow-soft);
}

.ref-image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.ref-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-content {
    padding: 20px;
}

.ref-location {
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
}

.ref-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.ref-details {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.cta-band {
    padding: clamp(48px, 6vw, 64px) 0;
    text-align: center;
    background-color: var(--color-bg-dark);
    color: #f5f5f7;
}

.cta-band .section-title {
    color: #f5f5f7;
    margin-bottom: 12px;
}

.cta-band .body-large {
    color: #a1a1a6;
    margin-bottom: 28px;
}

.cta-band .btn-primary {
    background: #fff;
    color: var(--color-text);
}

.cta-band .btn-primary:hover {
    background: #e8e8ed;
}

/* ==========================================================================
   Inner Pages
   ========================================================================== */

.page-hero {
    padding: calc(var(--header-height) + 48px) 0 56px;
    text-align: center;
    background-color: var(--color-bg);
}

/* Compact image banner for inner pages (About, News, References, Contact) */
.page-hero--banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(320px, 42vh, 460px);
    padding: calc(var(--header-height) + 48px) 0 64px;
    background-color: var(--color-bg-dark);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero--banner .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 45%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.page-hero--banner .page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero--banner .eyebrow {
    color: var(--color-accent-gold);
}

.page-hero--banner .page-title {
    color: #fff;
}

.page-hero--banner .page-subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.page-hero-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.page-title {
    font-size: var(--text-section);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.05;
    margin-bottom: 16px;
    color: var(--color-text);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* About */
.about-section {
    padding: var(--space-section) 0;
    background: var(--color-bg-elevated);
}

.about-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.about-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.values-section {
    padding: var(--space-section) 0;
    background: var(--color-bg-muted);
}

.values-grid {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-soft);
}

.value-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Contact page — Figma 3:5145 */
.page-contact {
    background: var(--color-bg);
}

.contact-page__main {
    padding: calc(var(--header-height) + clamp(40px, 5vw, 56px)) 0 clamp(48px, 6vw, 64px);
    background: var(--color-bg-elevated);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: clamp(40px, 6vw, 56px);
    align-items: start;
}

.contact-page__heading {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 32px;
}

.contact-page__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-page__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-bg);
    font-size: 18px;
    line-height: 1;
}

.contact-page__label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
}

.contact-page__value {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text);
}

.contact-page__value a {
    color: inherit;
    transition: var(--transition);
}

.contact-page__value a:hover {
    color: var(--color-accent);
}

.contact-page__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.contact-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    transition: var(--transition);
}

.contact-page__btn img {
    display: block;
    flex-shrink: 0;
}

.contact-page__btn--primary {
    background: var(--color-accent);
    color: #fff;
}

.contact-page__btn--primary:hover {
    background: var(--color-accent-hover);
}

.contact-page__btn--secondary {
    background: var(--color-bg-muted);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.contact-page__btn--secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.contact-page__location {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-page__map {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    min-height: clamp(360px, 50vh, 490px);
    box-shadow: 0 8px 32px rgba(44, 40, 37, 0.08);
}

.contact-page__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 50vh, 490px);
    border: none;
}

.contact-page__directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-accent-hover);
    background: var(--color-bg);
    border: 1.5px solid var(--color-accent-hover);
    transition: var(--transition);
}

.contact-page__directions:hover {
    background: var(--color-bg);
    color: var(--color-accent-hover);
}

.contact-page__directions img {
    display: block;
    flex-shrink: 0;
}

.contact-page__faq {
    padding: clamp(48px, 6vw, 64px) 0;
    background: var(--color-bg-muted);
    border-top: 1px solid var(--color-border);
}

.contact-page__faq-inner {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
    text-align: center;
}

.contact-page__faq-eyebrow {
    color: var(--color-accent-hover);
    letter-spacing: 0.3em;
}

.contact-page__faq-title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
    margin-top: 12px;
}

.contact-faq {
    margin-top: clamp(36px, 5vw, 48px);
    text-align: left;
}

.contact-faq__item {
    background: var(--color-bg-elevated);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
}

.contact-faq__item + .contact-faq__item {
    margin-top: 16px;
}

.contact-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.contact-faq__question::-webkit-details-marker {
    display: none;
}

.contact-faq__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-bg-muted);
    color: var(--color-text-secondary);
    transition: transform 0.25s var(--ease);
}

.contact-faq__toggle img {
    display: block;
    width: 12px;
    height: 12px;
}

.contact-faq__item[open] .contact-faq__toggle {
    transform: rotate(45deg);
}

.contact-faq__answer {
    padding: 0 24px 24px;
}

.contact-faq__answer p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

/* Contact (legacy) */
.contact-section {
    padding: 0;
    background: var(--color-bg-elevated);
}

.contact-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: stretch;
}

.info-col h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--color-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.detail-item h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 6px;
}

.detail-item p,
.detail-item a {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.5;
}

.detail-item a:hover {
    color: var(--color-accent);
}

.map-col {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    min-height: 400px;
}

.map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.telegram-cta-box {
    background: var(--color-bg-muted);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid var(--color-border);
}

.telegram-cta-box h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.telegram-cta-box p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.telegram-link-btn {
    display: inline-flex;
    align-items: center;
    background: #0088cc;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 980px;
    transition: opacity 0.2s;
}

.telegram-link-btn:hover {
    opacity: 0.9;
}

/* News page overrides */
.news-page-section {
    padding: var(--space-section) 0;
    background: var(--color-bg-elevated);
}

.news-page-section .news-grid {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.news-meta {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
}

/* News detail page */
.news-detail-section {
    padding: calc(var(--header-height) + 48px) 0 var(--space-section);
    background: var(--color-bg);
}

.news-detail-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    transition: var(--transition);
}

.news-back-link:hover {
    color: var(--color-accent);
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.news-detail-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.news-detail-date {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.news-detail-date::before {
    content: "·";
    margin-right: 12px;
    color: var(--color-border);
}

.news-detail-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

.news-detail-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.news-detail-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.news-detail-lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.news-detail-body p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.news-detail-body p:first-child::first-letter {
    font-size: 3.2em;
    font-weight: 600;
    float: left;
    line-height: 0.85;
    margin: 4px 10px 0 0;
    color: var(--color-text);
}

.news-detail-body p:last-child {
    margin-bottom: 0;
}

.news-detail-loading {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 48px 0;
}

.news-detail-not-found {
    text-align: center;
    padding: 48px 0;
}

.news-detail-not-found h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.news-detail-not-found p {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.news-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.news-related-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-related-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.news-related-card:hover {
    box-shadow: var(--shadow-soft);
}

.news-related-image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.news-related-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.news-related-card:hover .news-related-image-wrap img {
    transform: scale(1.03);
}

.news-related-content {
    padding: 16px;
}

.news-related-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
    margin-top: 6px;
}

/* References page */
.references-page {
    padding-top: var(--header-height);
    background: var(--color-bg);
}

.references-page > .container-wide {
    max-width: 1280px;
}

.references-filters {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.references-filters__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 62px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.references-filters__track {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.references-filters__track::-webkit-scrollbar {
    display: none;
}

.references-filter {
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-bg-elevated);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.references-filter:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.references-filter.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.references-filters__count {
    flex-shrink: 0;
    padding-left: 8px;
    font-size: 12px;
    color: var(--color-text-tertiary);
    white-space: nowrap;
}

.references-showcase {
    padding: 64px 0;
    background: var(--color-bg);
}

.references-featured {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1091 / 400;
    min-height: 280px;
}

.references-featured[hidden] {
    display: none;
}

.references-featured__media {
    position: absolute;
    inset: 0;
}

.references-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.references-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.88) 0%,
        rgba(44, 40, 37, 0.1) 60%
    );
}

.references-featured__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
}

.references-featured__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
}

.references-featured__meta {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.references-featured__title {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
}

.references-featured__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.references-featured__btn img {
    display: block;
    width: 14px;
    height: 10px;
    filter: brightness(0) invert(1);
}

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

.references-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 350 / 263;
    outline: none;
}

.references-card[hidden] {
    display: none;
}

.references-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.references-card__media {
    position: absolute;
    inset: 0;
}

.references-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.references-card:hover .references-card__media img {
    transform: scale(1.05);
}

.references-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.85) 0%,
        rgba(44, 40, 37, 0.08) 60%
    );
}

.references-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
}

.references-card__meta {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.55);
}

.references-card__title {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

.references-card__year {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-accent);
}

.references-sectors {
    padding: clamp(48px, 6vw, 64px) 0 clamp(40px, 5vw, 56px);
    background: var(--color-bg-muted);
    border-bottom: 1px solid var(--color-border);
}

.references-sectors__header {
    text-align: center;
}

.references-sectors__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.references-sectors__title {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.references-sectors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.references-sector-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: var(--color-bg-elevated);
    transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.references-sector-card:hover {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 12px 32px rgba(44, 40, 37, 0.08);
}

.references-sector-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.references-sector-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.references-sector-card:hover .references-sector-card__media img {
    transform: scale(1.05);
}

.references-sector-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    padding: 24px 24px 28px;
}

.references-sector-card h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
}

.references-sector-card p {
    font-size: 14px;
    line-height: 1.625;
    color: var(--color-text-tertiary);
}

@media (prefers-reduced-motion: reduce) {
    .references-sector-card,
    .references-sector-card__media img {
        transition: none;
    }

    .references-sector-card:hover .references-sector-card__media img {
        transform: none;
    }
}

.references-cta {
    padding: clamp(48px, 6vw, 64px) 0;
    background: var(--color-bg-muted);
}

.references-cta__inner {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.references-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.references-cta__dek {
    max-width: 448px;
    margin: 16px auto 0;
    font-size: 14px;
    line-height: 1.625;
    color: var(--color-text-secondary);
}

.references-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.references-cta__btn img {
    display: block;
    width: 14px;
    height: 10px;
    filter: brightness(0) invert(1);
}

/* Reference detail page — Figma 4:8018 (site palette) */
.ref-detail-loading,
.ref-detail-not-found {
    padding: calc(var(--header-height) + 56px) 0 var(--space-section);
    text-align: center;
    color: var(--color-text-secondary);
}

.ref-detail-not-found h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.ref-detail-not-found p {
    margin-bottom: 24px;
    color: var(--color-text-secondary);
}

.ref-detail-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.ref-detail-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(360px, 55vh, 560px);
    padding: calc(var(--header-height) + 48px) 0 64px;
    background-color: var(--color-bg-dark);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ref-detail-hero__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(201, 162, 39, 0) 0%,
        var(--color-accent-gold) 25%,
        var(--color-accent-gold) 75%,
        rgba(201, 162, 39, 0) 100%
    );
    z-index: 2;
}

.ref-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.92) 0%,
        rgba(44, 40, 37, 0.55) 55%,
        rgba(44, 40, 37, 0.2) 100%
    );
}

.ref-detail-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: left;
}

.ref-detail-hero__badges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.ref-detail-hero__sector {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--color-accent-gold);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-bg-dark);
}

.ref-detail-hero__year {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.ref-detail-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.ref-detail-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.ref-detail-hero__pin {
    flex-shrink: 0;
    width: 16px;
    height: auto;
    color: rgba(255, 255, 255, 0.55);
}

.ref-detail-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0;
}

.ref-detail-heading {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.ref-detail-body {
    margin-top: 24px;
    max-width: 706px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.ref-detail-overview {
    padding: clamp(48px, 6vw, 64px) 0 48px;
    background: var(--color-bg-elevated);
}

.ref-detail-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 64px;
    align-items: start;
}

.ref-detail-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 12px 20px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-text);
}

.ref-detail-highlight__icon {
    flex-shrink: 0;
    color: var(--color-accent-gold);
}

.ref-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border-radius: 0;
    background: var(--color-bg-dark);
}

.ref-detail-info__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.ref-detail-info__value {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.ref-detail-info__value--strong {
    font-weight: 600;
    color: #fff;
}

.ref-detail-gallery-section {
    padding: 0 0 48px;
    background: var(--color-bg-elevated);
}

.ref-detail-gallery__hint {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-text-tertiary);
}

.ref-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.ref-detail-gallery__item {
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    aspect-ratio: 4 / 3;
}

.ref-detail-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.ref-detail-gallery__item:hover img,
.ref-detail-gallery__item:focus-visible img {
    transform: scale(1.04);
}

.ref-detail-gallery__item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.ref-detail-related {
    padding: 48px 0 clamp(48px, 6vw, 64px);
    background: var(--color-bg-muted);
}

.ref-detail-related__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.ref-detail-related__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    transition: opacity 0.3s var(--ease);
}

.ref-detail-related__link:hover,
.ref-detail-related__link:focus-visible {
    opacity: 0.75;
}

.ref-detail-related__link img {
    display: block;
    width: 14px;
    height: 10px;
}

.ref-detail-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ref-detail-related .home-ref-card {
    aspect-ratio: 347 / 261;
}

.ref-detail-related .home-ref-card__overlay {
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.88) 0%,
        rgba(44, 40, 37, 0.1) 60%
    );
}

.ref-detail-related .home-ref-card__year {
    color: var(--color-bg-dark);
}

.ref-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(44, 40, 37, 0.94);
}

.ref-lightbox[hidden] {
    display: none;
}

.ref-lightbox__figure {
    max-width: min(1200px, 92vw);
    max-height: 85vh;
    margin: 0;
}

.ref-lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.ref-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.ref-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.ref-lightbox__nav--prev { left: 24px; }
.ref-lightbox__nav--next { right: 24px; }

@media (max-width: 1024px) {
    .ref-detail-overview__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

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

    .ref-detail-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ref-detail-hero {
        padding-bottom: 48px;
    }

    .ref-detail-overview {
        padding: 56px 0 40px;
    }

    .ref-detail-related__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ref-detail-related__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ref-lightbox__nav--prev { left: 12px; }
    .ref-lightbox__nav--next { right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .ref-detail-gallery__item img {
        transition: none;
    }

    .ref-detail-gallery__item:hover img,
    .ref-detail-gallery__item:focus-visible img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .references-card__media img {
        transition: none;
    }

    .references-card:hover .references-card__media img {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .references-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .references-filters__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .references-filters__track {
        width: 100%;
    }

    .references-filters__count {
        padding-left: 0;
    }

    .references-showcase {
        padding: 48px 0;
    }

    .references-featured__footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .references-sectors {
        padding: 48px 0 32px;
    }

    .references-sectors__grid {
        margin-top: 32px;
        gap: 16px;
    }

    .references-sector-card__body {
        padding: 20px 20px 24px;
    }

    .references-cta {
        padding: 64px 0;
    }
}

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

    .references-sectors__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================================
   Catalog
   ========================================================================== */

.catalog-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 50vh;
    padding-top: var(--header-height);
    background: var(--color-bg);
}

.catalog-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px clamp(24px, 6vw, 64px);
}

.catalog-hero-content .eyebrow {
    margin-bottom: 16px;
}

.catalog-hero-content .display-title {
    font-size: var(--text-section);
}

.catalog-hero-image {
    overflow: hidden;
}

.catalog-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.category-section {
    position: sticky;
    top: var(--header-height);
    z-index: 99;
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.category-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 16px 0;
}

.category-track::-webkit-scrollbar {
    display: none;
}

.category-tab {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.category-tab:hover {
    color: var(--color-accent);
}

.category-tab.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.catalog-products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 64px) var(--space-gutter);
    background: var(--color-bg);
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.product-canvas {
    aspect-ratio: 1 / 1;
    background: var(--color-bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.product-canvas img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

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

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-accent-gold);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}

.card-overlay-btn {
    display: none;
}

.product-meta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-code {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 8px;
}

.product-details {
    font-family: var(--font-body);
    font-size: var(--text-product-spec);
    font-weight: 400;
    color: var(--color-text-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: auto;
}

.product-cta:hover {
    text-decoration: underline;
}

.portfolio-section {
    padding: var(--space-section) 0;
    background: var(--color-bg-muted);
}

.portfolio-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.portfolio-header {
    margin-bottom: 40px;
}

.portfolio-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.portfolio-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    padding: 32px;
}

.portfolio-card-header {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.portfolio-card-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-list {
    list-style: none;
}

.portfolio-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.portfolio-item:last-child {
    border-bottom: none;
}

.portfolio-project-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.portfolio-project-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-align: right;
}

/* Product Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--color-bg-elevated);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    animation: modalSlideUp 0.4s var(--ease);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--color-bg-muted);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-text-secondary);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--color-border);
    color: var(--color-text);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-gallery {
    padding: 32px;
    background: var(--color-bg-muted);
}

.modal-gallery-stage {
    position: relative;
    margin-bottom: 12px;
}

.modal-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(44, 40, 37, 0.12);
    transition: background-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.modal-gallery-arrow:hover:not(:disabled),
.modal-gallery-arrow:focus-visible:not(:disabled) {
    background: #fff;
    outline: none;
}

.modal-gallery-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.modal-gallery-arrow--prev {
    left: 12px;
}

.modal-gallery-arrow--next {
    right: 12px;
}

.modal-main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0;
    cursor: zoom-in;
    transition: box-shadow 0.25s var(--ease);
}

.modal-main-image-container:hover,
.modal-main-image-container:focus-visible {
    box-shadow: inset 0 0 0 1px rgba(26, 107, 122, 0.25);
    outline: none;
}

.modal-main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.modal-image-zoom-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.modal-main-image-container:hover .modal-image-zoom-hint,
.modal-main-image-container:focus-visible .modal-image-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

.modal-image-zoom-hint svg {
    display: block;
    flex-shrink: 0;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-thumbnail {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.modal-thumbnail.active,
.modal-thumbnail:hover,
.modal-thumbnail:focus-visible {
    border-color: var(--color-accent);
    outline: none;
}

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

/* Product image lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

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

.image-lightbox__figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: min(1200px, 95vw);
    height: calc(90vh - 40px);
    margin: 0;
}

.image-lightbox__image {
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-lightbox__counter {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.image-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s var(--ease);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    outline: none;
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.image-lightbox__nav:hover:not(:disabled),
.image-lightbox__nav:focus-visible:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    outline: none;
}

.image-lightbox__nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.image-lightbox__nav--prev {
    left: 20px;
}

.image-lightbox__nav--next {
    right: 20px;
}

@media (max-width: 640px) {
    .modal-image-zoom-hint__text {
        display: none;
    }

    .image-lightbox__nav {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .image-lightbox__nav--prev {
        left: 12px;
    }

    .image-lightbox__nav--next {
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal-image-zoom-hint,
    .image-lightbox {
        transition: none;
    }

    .modal-main-image-container:hover .modal-image-zoom-hint,
    .modal-main-image-container:focus-visible .modal-image-zoom-hint {
        transform: none;
    }
}

.modal-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.product-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.modal-product-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 14px;
    color: var(--color-text);
}

#modalProductCode.meta-value {
    color: var(--color-accent);
    font-weight: 600;
}

.modal-specs-wrapper h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.specs-list {
    list-style: none;
    margin-bottom: 24px;
}

.specs-list li {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.4;
}

.specs-list li:last-child {
    border-bottom: none;
}

.modal-technical-files {
    padding-top: 48px;
    margin-top: auto;
}

.modal-technical-files__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.modal-technical-files__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.modal-technical-files__count {
    font-size: 12px;
    color: #aaa;
}

.modal-technical-files__group {
    padding-top: 20px;
}

.modal-technical-files__group + .modal-technical-files__group {
    padding-top: 16px;
}

.modal-technical-files__group-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.modal-technical-files__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.modal-technical-files__pill img {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.modal-technical-files__pill span {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    white-space: nowrap;
}

.modal-technical-files__pill--2d {
    background: var(--color-bg);
    color: var(--color-accent);
}

.modal-technical-files__pill--3d {
    background: #f4f0e8;
    color: #9a7210;
}

.modal-technical-files__rule {
    flex: 1;
    height: 1px;
    background: #ebebeb;
    margin-left: 2px;
}

.modal-technical-files__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.modal-file-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f9f7f4;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.modal-file-card:hover,
.modal-file-card:focus-visible {
    border-color: var(--color-accent);
    background: #fff;
}

.modal-file-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    flex-shrink: 0;
}

.modal-file-card__icon--dwg {
    background: var(--color-bg);
    color: var(--color-accent);
}

.modal-file-card__icon--pdf {
    background: #fef2f2;
    color: #dc2626;
}

.modal-file-card__icon--step {
    background: var(--color-bg);
    color: var(--color-accent-hover);
}

.modal-file-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.modal-file-card__name {
    font-size: 12px;
    font-weight: 600;
    line-height: 16.5px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-file-card__size {
    font-size: 12px;
    line-height: 16px;
    color: #aaa;
}

.modal-technical-files__note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 16px;
    color: #bbb;
}

.modal-technical-files__note a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-technical-files__note a:hover,
.modal-technical-files__note a:focus-visible {
    opacity: 0.75;
}

@media (max-width: 640px) {
    .modal-technical-files__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================================
   Showroom Grid Layout System
   ========================================================================== */

.section-header-left {
    margin-bottom: clamp(40px, 6vw, 56px);
    max-width: 520px;
}

.section-header-left .section-title {
    margin-bottom: 12px;
}

/* Homepage collections — Figma Make category grid */
.collections-showroom {
    padding: var(--space-section) 0;
    background: var(--color-bg);
}

.collections-showroom > .container-wide {
    max-width: 1400px;
}

.collections-showroom__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.collections-showroom__header .eyebrow {
    letter-spacing: 0.3em;
    color: var(--color-text-secondary);
    opacity: 0.7;
    margin-bottom: 16px;
}

.collections-showroom__header .section-title {
    font-size: var(--text-section);
    letter-spacing: -0.015em;
    margin-bottom: 0;
}

.collections-showroom__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}

.collection-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    outline: none;
    cursor: pointer;
}

.collection-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.collection-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.collection-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.collection-card:hover .collection-card__media img,
.collection-card:focus-visible .collection-card__media img {
    transform: scale(1.1);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.5s var(--ease);
}

.collection-card__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.5s var(--ease);
}

.collection-card:hover .collection-card__overlay,
.collection-card:focus-visible .collection-card__overlay {
    opacity: 0.9;
}

.collection-card:hover .collection-card__overlay::after,
.collection-card:focus-visible .collection-card__overlay::after {
    background: rgba(255, 255, 255, 0.05);
}

.collection-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 3vw, 32px);
    color: #fff;
}

.collection-card__subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 8px;
}

.collection-card__title {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 16px;
}

.collection-card__rule {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.5s var(--ease);
}

.collection-card:hover .collection-card__rule,
.collection-card:focus-visible .collection-card__rule {
    width: 96px;
}

@media (prefers-reduced-motion: reduce) {
    .collection-card__media img,
    .collection-card__overlay,
    .collection-card__rule {
        transition: none;
    }

    .collection-card:hover .collection-card__media img,
    .collection-card:focus-visible .collection-card__media img {
        transform: none;
    }
}

/* Homepage design inspirations — Figma Section 6:9935 */
.home-inspirations {
    padding: clamp(48px, 6vw, 64px) 0;
    background: #fff;
}

.home-inspirations > .container-wide {
    max-width: 1280px;
}

.home-inspirations__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-inspirations__header .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 0;
}

.home-inspirations__header .section-title {
    margin-top: 12px;
    font-size: var(--text-section);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #000;
}

.home-inspirations__header .section-title em {
    font-style: italic;
    font-weight: 400;
}

.home-inspirations__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    transition: opacity 0.3s var(--ease);
}

.home-inspirations__link svg {
    display: block;
    width: 14px;
    height: 10px;
    flex-shrink: 0;
}

.home-inspirations__link:hover,
.home-inspirations__link:focus-visible {
    opacity: 0.75;
}

.home-inspirations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.home-insp-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 258 / 344;
    outline: none;
}

.home-insp-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.home-insp-card__media {
    position: absolute;
    inset: 0;
}

.home-insp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.home-insp-card:hover .home-insp-card__media img {
    transform: scale(1.05);
}

.home-insp-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.05) 60%
    );
}

.home-insp-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 32px);
    min-height: 24px;
    padding: 4px 12px;
    border-radius: 0;
    background: rgba(44, 40, 37, 0.72);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: #fff;
}

.home-insp-card__title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .home-insp-card__media img {
        transition: none;
    }

    .home-insp-card:hover .home-insp-card__media img {
        transform: none;
    }
}

@media (max-width: 768px) {
    .home-inspirations {
        padding: 64px 0;
    }

    .home-inspirations__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .home-inspirations__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
    }
}

@media (max-width: 560px) {
    .home-inspirations__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Homepage news — Figma Section 6:9997 */
.home-news {
    padding: clamp(48px, 6vw, 64px) 0;
    background: #fff;
}

.home-news > .container-wide {
    max-width: 1280px;
}

.home-news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-news__header .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-accent-hover);
    margin-bottom: 0;
}

.home-news__header .section-title {
    margin-top: 12px;
    font-size: var(--text-section);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #000;
}

.home-news__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-hover);
    transition: opacity 0.3s var(--ease);
}

.home-news__link svg {
    display: block;
    width: 14px;
    height: 10px;
    flex-shrink: 0;
}

.home-news__link:hover,
.home-news__link:focus-visible {
    opacity: 0.75;
}

.home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.home-news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ebebeb;
    border-radius: 0;
    background: #fff;
    outline: none;
}

.home-news-card:focus-visible {
    outline: 2px solid var(--color-accent-hover);
    outline-offset: 3px;
}

.home-news-card__media {
    width: 100%;
    aspect-ratio: 348 / 194;
    overflow: hidden;
    background: #fff;
}

.home-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.home-news-card:hover .home-news-card__media img {
    transform: scale(1.04);
}

.home-news-card__body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.home-news-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-news-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--color-bg);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--color-accent);
}

.home-news-card__meta time {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #bbb;
}

.home-news-card__title {
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    color: #000;
}

.home-news-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: #888;
}

/* Home project references */
.home-references {
    padding: clamp(48px, 6vw, 64px) 0;
    background: #fff;
}

.home-references > .container-wide {
    max-width: 1280px;
}

.home-references__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.home-references__header .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-accent-hover);
    margin-bottom: 0;
}

.home-references__header .section-title {
    margin-top: 12px;
    font-size: var(--text-section);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #000;
}

.home-references__header .section-title em {
    font-style: italic;
    font-weight: 400;
}

.home-references__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-hover);
    transition: opacity 0.3s var(--ease);
}

.home-references__link svg {
    display: block;
    width: 14px;
    height: 10px;
    flex-shrink: 0;
}

.home-references__link:hover,
.home-references__link:focus-visible {
    opacity: 0.75;
}

.home-references__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.home-ref-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 255 / 340;
    outline: none;
}

.home-ref-card:focus-visible {
    outline: 2px solid var(--color-accent-hover);
    outline-offset: 3px;
}

.home-ref-card__media {
    position: absolute;
    inset: 0;
}

.home-ref-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.home-ref-card:hover .home-ref-card__media img {
    transform: scale(1.05);
}

.home-ref-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.1) 55%
    );
}

.home-ref-card__year {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.9);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #000;
}

.home-ref-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
}

.home-ref-card__meta {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.55);
}

.home-ref-card__title {
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .home-news-card__media img,
    .home-ref-card__media img {
        transition: none;
    }

    .home-news-card:hover .home-news-card__media img,
    .home-ref-card:hover .home-ref-card__media img {
        transform: none;
    }
}

@media (max-width: 768px) {
    .home-news,
    .home-references {
        padding: 64px 0;
    }

    .home-news__header,
    .home-references__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .home-news__grid,
    .home-references__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
    }
}

@media (max-width: 560px) {
    .home-news__grid,
    .home-references__grid {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 85vw;
        gap: 16px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        margin-left: calc(-1 * var(--space-gutter));
        margin-right: calc(-1 * var(--space-gutter));
        padding-left: var(--space-gutter);
        padding-right: var(--space-gutter);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .home-news__grid::-webkit-scrollbar,
    .home-references__grid::-webkit-scrollbar {
        display: none;
    }

    .home-news-card,
    .home-ref-card {
        scroll-snap-align: center;
    }
}

/* Home contact strip */
.home-contact-strip {
    padding: clamp(48px, 6vw, 64px) 0;
    background: var(--color-bg-muted);
    border-top: 1px solid var(--color-border);
}

.home-contact-strip__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.home-contact-strip__message .section-title {
    margin-bottom: 12px;
}

.home-contact-strip__message .body-large {
    max-width: 480px;
}

.home-contact-strip__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-left: clamp(0px, 3vw, 32px);
    border-left: 1px solid rgba(184, 134, 11, 0.35);
}

.home-contact-strip__item {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
}

.home-contact-strip__item:hover {
    color: var(--color-accent-hover);
}

/* Mosaic category / gallery grid */
.showroom-grid {
    display: grid;
    gap: var(--showroom-gap);
    grid-template-columns: repeat(3, 1fr);
}

.showroom-grid--mosaic {
    grid-template-columns: repeat(6, 1fr);
}

.showroom-tile {
    display: block;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg-elevated);
    transition: var(--transition);
}

.showroom-tile:hover {
    border-color: rgba(184, 134, 11, 0.35);
}

.showroom-tile__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.showroom-tile--featured .showroom-tile__image {
    aspect-ratio: 16 / 10;
}

.showroom-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.showroom-tile:hover .showroom-tile__image img {
    transform: scale(1.04);
}

.showroom-tile__caption {
    padding: 16px 20px;
}

.showroom-tile__category {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.showroom-tile__title {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

.showroom-grid--mosaic .showroom-tile {
    grid-column: span 2;
}

.showroom-grid--mosaic .showroom-tile--featured {
    grid-column: span 3;
}

/* News showroom layout */
.showroom-news {
    display: grid;
    gap: var(--showroom-gap);
}

.showroom-news__featured {
    display: block;
}

.showroom-news__featured .showroom-tile__image {
    aspect-ratio: 21 / 9;
}

.showroom-news__featured .showroom-tile__title {
    font-size: clamp(28px, 4vw, 40px);
}

.showroom-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--showroom-gap);
}

/* Full-bleed page hero (showroom) */
.page-hero--showroom {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: clamp(360px, 55vh, 560px);
    padding: calc(var(--header-height) + 48px) 0 56px;
    background-color: var(--color-bg-dark);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero--showroom .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.8) 0%,
        rgba(44, 40, 37, 0.3) 55%,
        rgba(44, 40, 37, 0.4) 100%
    );
}

.page-hero--showroom .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0;
    padding: 0 var(--space-gutter);
    text-align: left;
}

.page-hero--showroom .page-title {
    color: #fff;
    font-size: var(--text-hero);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.page-hero--showroom .page-subtitle {
    display: none;
}

.page-hero--showroom .eyebrow {
    color: var(--color-accent-gold);
}

/* Catalog full-bleed hero */
.catalog-hero--showroom {
    position: relative;
    min-height: clamp(400px, 55vh, 560px);
    padding-top: var(--header-height);
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.catalog-hero--showroom .catalog-hero-image {
    position: absolute;
    inset: 0;
}

.catalog-hero--showroom .catalog-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.catalog-hero--showroom .catalog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.85) 0%,
        rgba(44, 40, 37, 0.25) 50%,
        rgba(44, 40, 37, 0.35) 100%
    );
}

.catalog-hero--showroom .catalog-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(400px, 55vh, 560px);
    max-width: 640px;
    padding: 48px var(--space-gutter) 56px;
}

.catalog-hero--showroom .display-title {
    color: #fff;
    font-size: var(--text-section);
    line-height: 1.05;
    letter-spacing: -0.015em;
}

/* Kitchen full-bleed with floating caption */
.kitchen-showroom {
    position: relative;
    min-height: clamp(420px, 60vh, 640px);
    overflow: hidden;
}

.kitchen-showroom__image {
    position: absolute;
    inset: 0;
}

.kitchen-showroom__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kitchen-showroom__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 40, 37, 0.7) 0%,
        rgba(44, 40, 37, 0.1) 60%
    );
}

.kitchen-showroom__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    max-width: 480px;
    padding: var(--space-gutter);
    color: #fff;
}

.kitchen-showroom__caption .section-title {
    color: #fff;
    margin-bottom: 12px;
}

.kitchen-showroom__caption .body-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

/* References showroom grid */
.references-grid--showroom {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--showroom-gap);
}

.reference-card .ref-image-wrap {
    aspect-ratio: 3 / 2;
}

.reference-card .ref-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s var(--ease), max-height 0.3s var(--ease);
}

.reference-card:hover .ref-details {
    opacity: 1;
    max-height: 4em;
    margin-top: 6px;
}

.ref-name {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
}

/* CTA full-bleed */
.cta-band--showroom {
    position: relative;
    padding: clamp(48px, 6vw, 64px) 0;
    background-color: var(--color-bg-dark);
    background-image: var(--cta-image, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cta-band--showroom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 40, 37, 0.72);
}

.cta-band--showroom .container {
    position: relative;
    z-index: 1;
}

.cta-band--showroom .section-title {
    color: #f5f0ea;
}

.cta-band--showroom .body-large {
    color: #b8b0a6;
}

.cta-band--showroom .btn-primary {
    background: var(--color-accent);
    color: #fff;
}

/* Product showroom grid */
.catalog-products-grid--showroom {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--showroom-gap);
}

.product-card--showroom {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: 0;
    background: var(--color-bg-elevated);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-card--showroom:hover {
    border-color: rgba(184, 134, 11, 0.35);
    transform: none;
    box-shadow: none;
}

.product-card--showroom .product-canvas {
    aspect-ratio: 3 / 4;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-muted);
    flex-shrink: 0;
}

.product-card--showroom .product-canvas img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card--showroom:hover .product-canvas img {
    transform: scale(1.04);
}

.product-card--showroom .product-tag {
    top: auto;
    bottom: 14px;
    left: 14px;
    right: auto;
    background: rgba(250, 247, 242, 0.94);
    color: var(--color-text);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: 0;
}

.product-card--showroom .card-overlay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: rgba(44, 40, 37, 0.32);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}

.product-card--showroom:hover .card-overlay-btn {
    opacity: 1;
}

.product-card--showroom .btn-view-detail {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.product-card--showroom .product-meta {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    border: none;
}

.product-card--showroom .product-code {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0;
}

.product-card--showroom .product-name {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0;
    color: var(--color-text);
}

.product-card--showroom .product-details {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-product-spec);
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    flex-grow: 1;
}

.product-card--showroom .product-details span:nth-child(even) {
    margin: 0 0.3em;
    color: var(--color-text-tertiary);
}

.product-card--showroom .product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.product-card--showroom .product-cta:hover {
    color: var(--color-accent-hover);
    text-decoration: none;
}

/* About page */
.about-page {
    padding-top: var(--header-height);
}

.about-who-we {
    background: var(--color-bg-elevated);
}

.about-who-we__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px) var(--space-gutter);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(32px, 4vw, 48px);
    row-gap: 16px;
    align-items: stretch;
}

.about-who-we__gallery {
    grid-column: 1;
    grid-row: 1;
}

.about-who-we__stats {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
}

.about-who-we__content {
    grid-column: 2;
    grid-row: 1 / -1;
}

.about-who-we__gallery {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    min-height: 500px;
}

.about-who-we__gallery-main {
    grid-column: 1;
    grid-row: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 0;
}

.about-who-we__gallery-main img,
.about-who-we__gallery-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-who-we__gallery-sub {
    border-radius: 12px;
    overflow: hidden;
    min-height: 0;
}

.about-who-we__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.about-who-we__title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #000;
    margin-bottom: 24px;
}

.about-who-we__text {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.65;
    color: #666;
    margin-bottom: 16px;
}

.about-who-we__text:last-of-type {
    margin-bottom: 0;
}

.about-who-we__stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 20px 0 0;
    border-top: 0;
    border-bottom: 0;
    margin: 0;
}

.about-who-we__stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex: 1;
    padding: 0 24px 0 0;
    margin: 0;
}

.about-who-we__stat + .about-who-we__stat {
    padding-left: 24px;
    border-left: 1px solid #e8e8e8;
}

.about-who-we__stat-value {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.33;
    color: var(--color-accent);
    margin: 0;
}

.about-who-we__stat-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #999;
    margin: 0;
}

.about-values {
    background: var(--color-bg-muted);
    padding: clamp(48px, 6vw, 56px) 0;
}

.about-values__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.about-values__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.about-values__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.about-values__title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #000;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px 32px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(44, 40, 37, 0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #e8d48b);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(44, 40, 37, 0.1);
    border-color: rgba(201, 162, 39, 0.25);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.15));
    color: var(--color-accent);
    transition: transform 0.4s var(--ease);
}

.about-value-card:hover .about-value-card__icon {
    transform: scale(1.08);
}

.about-value-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #000;
}

.about-value-card p {
    font-size: 15px;
    line-height: 1.625;
    color: #666;
    margin: 0;
}

/* About — Our Journey timeline */
.about-journey {
    background: #fff;
    padding: clamp(48px, 6vw, 56px) 0;
}

.about-journey__inner {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.about-journey__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.about-journey__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.about-journey__title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #000;
}

.about-journey__timeline {
    position: relative;
}

/* Vertical connector line behind the dots */
.about-journey__line {
    position: absolute;
    top: 4px;
    /* 64px year col + 32px gap + 8px = centre of dot */
    left: calc(64px + 32px + 8px);
    width: 1px;
    height: calc(100% - 4px);
    background: #e0e0e0;
    z-index: 0;
}

.about-journey__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-journey__item {
    display: grid;
    grid-template-columns: 64px 32px 1fr;
    align-items: start;
    column-gap: 0;
    position: relative;
    z-index: 1;
}

.about-journey.visible .about-journey__item {
    animation: journeyFadeIn 0.6s var(--ease) both;
}

.about-journey.visible .about-journey__item:nth-child(1) { animation-delay: 0.1s; }
.about-journey.visible .about-journey__item:nth-child(2) { animation-delay: 0.2s; }
.about-journey.visible .about-journey__item:nth-child(3) { animation-delay: 0.3s; }
.about-journey.visible .about-journey__item:nth-child(4) { animation-delay: 0.4s; }
.about-journey.visible .about-journey__item:nth-child(5) { animation-delay: 0.5s; }

@keyframes journeyFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-journey__year {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-accent);
    text-align: right;
    padding-top: 2px;
    letter-spacing: 0.02em;
}

.about-journey__dot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
}

.about-journey__dot::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about-journey__item:hover .about-journey__dot::after {
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.15);
}

.about-journey__body {
    padding-left: 32px;
    padding-bottom: 8px;
    border-radius: 8px;
    transition: background 0.3s var(--ease);
    padding: 8px 16px 12px 32px;
    margin: -8px 0 0 0;
}

.about-journey__item:hover .about-journey__body {
    background: rgba(201, 162, 39, 0.04);
}

.about-journey__body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #000;
    margin: 0 0 6px;
}

.about-journey__body p {
    font-size: 15px;
    line-height: 22.75px;
    color: #888;
    margin: 0;
}

@media (max-width: 560px) {
    .about-journey__line {
        left: calc(48px + 32px + 8px);
    }

    .about-journey__item {
        grid-template-columns: 48px 32px 1fr;
    }
}

/* About gallery-first */
.about-container--showroom {
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.about-container--showroom .about-image-wrap {
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.about-container--showroom .about-img {
    aspect-ratio: 3 / 4;
}

.about-content h2 {
    font-family: var(--font-display);
    font-weight: 500;
}

.about-section--gallery {
    padding: 0;
    background: transparent;
    margin-bottom: clamp(48px, 6vw, 64px);
}

.about-section--gallery .about-container {
    max-width: 1400px;
}

.about-section--gallery .magazine-pullquote {
    margin: 32px 0;
}

.about-glance {
    max-width: 1400px;
    margin: 0 auto clamp(48px, 6vw, 64px);
    padding: 0 var(--space-gutter);
}

.about-glance__label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.about-glance__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--showroom-gap);
}

.about-glance__item {
    padding: 24px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
}

.about-glance__item h3 {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.about-glance__item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* References page — core values strip */
.ref-core-values {
    background: var(--color-bg-muted);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: clamp(48px, 6vw, 64px) 0;
}

.ref-core-values__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-gutter);
}

.ref-core-values__header {
    margin-bottom: clamp(32px, 5vw, 48px);
    max-width: 560px;
}

.ref-core-values__header h2 {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.ref-core-values .values-grid--showroom {
    max-width: none;
    padding: 0;
}

.magazine-body > .magazine-callout {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--space-gutter);
    padding-right: var(--space-gutter);
}

/* Value strips */
.values-grid--showroom {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--showroom-gap);
}

.value-card--showroom {
    padding: 28px 24px;
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.value-card--showroom .value-number {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.value-card--showroom h3 {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    margin-bottom: 0;
}

.value-card--showroom p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: opacity 0.3s var(--ease), max-height 0.4s var(--ease), margin 0.3s;
}

.value-card--showroom:hover p {
    opacity: 1;
    max-height: 120px;
    margin-top: 12px;
}

/* Contact map-dominant */
.contact-container--showroom {
    grid-template-columns: 1.85fr 1fr;
    gap: 0;
    max-width: 1400px;
    align-items: stretch;
    padding: 0;
}

.contact-container--showroom .map-col {
    min-height: 520px;
    border-radius: 0;
    border: none;
}

.contact-container--showroom .info-col {
    padding: clamp(32px, 5vw, 56px);
    background: var(--color-bg-elevated);
    border-left: 1px solid var(--color-border);
    border-top: none;
}

.contact-container--showroom .info-col h2 {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
}

.contact-container--showroom .telegram-cta-box {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 8px;
}

.contact-container--showroom .telegram-cta-box h4 {
    display: none;
}

.contact-container--showroom .telegram-cta-box p {
    margin-bottom: 12px;
}

/* News detail image-first */
.news-detail--showroom .news-detail-image-wrap {
    margin: 0 calc(-1 * var(--space-gutter)) 40px;
    max-width: none;
    border-radius: 0;
}

.news-detail--showroom .news-detail-image {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.news-detail--showroom .news-detail-container {
    max-width: 680px;
}

.news-detail--showroom .news-detail-title {
    font-family: var(--font-display);
    font-size: var(--text-section);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.015em;
}

.news-related-grid--showroom {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--showroom-gap);
}

/* Category tabs pills */
.category-section--showroom {
    background: var(--color-bg-elevated);
}

.category-section--showroom .category-tab {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
}

.category-section--showroom .category-tab.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .collections-showroom__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-contact-strip__grid {
        grid-template-columns: minmax(0, 1fr);
    }


    .home-contact-strip__actions {
        padding-left: 0;
        border-left: none;
        padding-top: 8px;
        border-top: 1px solid rgba(184, 134, 11, 0.35);
    }

    .showroom-grid--mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .showroom-grid--mosaic .showroom-tile,
    .showroom-grid--mosaic .showroom-tile--featured {
        grid-column: span 1;
    }

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

    .catalog-products-grid--showroom {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid,
    .references-grid,
    .references-grid--showroom {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .values-grid--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-container--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-who-we__inner {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        padding: clamp(40px, 5vw, 56px) var(--space-gutter);
        gap: 32px;
    }

    .about-who-we__gallery,
    .about-who-we__stats,
    .about-who-we__content {
        grid-column: auto;
        grid-row: auto;
    }

    .about-who-we__content {
        text-align: center;
    }

    .about-who-we__gallery {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        gap: 12px;
    }

    .about-who-we__gallery-main {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .about-who-we__gallery-main img {
        height: 260px;
        border-radius: 12px;
    }

    .about-who-we__gallery-sub img {
        height: 160px;
        border-radius: 10px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .contact-container--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-container--showroom .map-col {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .kitchen-split {
        grid-template-columns: minmax(0, 1fr);
    }

    .kitchen-split-image img {
        min-height: 280px;
    }

    .news-grid,
    .references-grid,
    .news-related-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-container,
    .contact-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .contact-page__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-page__actions {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .about-values__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .about-value-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .about-value-card__icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
    }

    .about-value-card h3 {
        font-size: 16px;
    }

    .about-value-card p {
        font-size: 14px;
    }

    .about-who-we__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        background: rgba(201, 162, 39, 0.04);
        border-radius: 12px;
        padding: 20px 0;
        border: 1px solid rgba(201, 162, 39, 0.12);
    }

    .about-who-we__stat {
        padding: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .about-who-we__stat + .about-who-we__stat {
        padding-left: 0;
        border-left: 1px solid rgba(201, 162, 39, 0.12);
    }

    .about-who-we__stat:last-child {
        grid-column: auto;
    }

    .about-who-we__stat-value {
        font-size: 24px;
    }

    .about-who-we__stat-label {
        font-size: 11px;
    }

    .about-who-we__gallery-main img {
        height: 220px;
        border-radius: 10px;
    }

    .about-who-we__gallery-sub img {
        height: 130px;
        border-radius: 8px;
    }

    .about-who-we__content {
        text-align: left;
    }

    .about-who-we__title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .about-journey__item {
        grid-template-columns: 48px 28px 1fr;
    }

    .about-journey__line {
        left: calc(48px + 28px + 6px);
    }

    .about-journey__body {
        padding-left: 20px;
    }

    .about-journey__body h3 {
        font-size: 16px;
    }

    .about-journey__body p {
        font-size: 14px;
        line-height: 1.6;
    }

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

    .catalog-hero-image {
        order: -1;
        max-height: 240px;
    }

    .showroom-grid,
    .showroom-grid--mosaic,
    .showroom-news__grid,
    .news-related-grid--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-products-grid--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .references-grid--showroom {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-container--showroom .info-col {
        border-left: none;
        border-top: 1px solid var(--color-border);
    }

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

    .portfolio-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .portfolio-project-desc {
        text-align: left;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .modal-backdrop {
        padding: 16px;
    }

    .modal-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .modal-gallery {
        padding: 24px 16px 16px;
    }

    .modal-info {
        padding: 20px 16px;
    }

    .modal-meta-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 10;
    }
}

@media (max-width: 480px) {
    .collections-showroom__grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

/* ==========================================================================
   Magazine Document Layout (Inner Pages)
   ========================================================================== */

.magazine-page {
    padding-top: var(--header-height);
}

.magazine-masthead {
    padding: clamp(48px, 6vw, 64px) var(--space-gutter) clamp(32px, 5vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border);
}

.magazine-masthead .eyebrow {
    margin-bottom: 12px;
}

.magazine-masthead__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 64px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.magazine-masthead__dek {
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 560px;
}

.magazine-lead {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 520px;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.magazine-lead img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-lead--tall {
    aspect-ratio: 16 / 9;
    max-height: 640px;
}

.magazine-body {
    padding: clamp(48px, 6vw, 64px) var(--space-gutter);
}

.magazine-page--catalog .magazine-body {
    padding-top: clamp(24px, 4vw, 36px);
}

.catalog-concepts {
    max-width: 1400px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}

.catalog-concepts__eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 12px 0;
    margin: 0;
}

.catalog-concepts__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0;
}

.catalog-concepts__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    color: #666;
    font-family: var(--font-body);
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.catalog-concepts__tab-num {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    opacity: 0.6;
}

.catalog-concepts__tab-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
}

.catalog-concepts__tab:hover,
.catalog-concepts__tab:focus-visible {
    color: var(--color-accent);
}

.catalog-concepts__tab:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.catalog-concepts__tab.is-active {
    background: var(--color-accent);
    color: #fff;
}

.catalog-concepts__tab.is-active:hover,
.catalog-concepts__tab.is-active:focus-visible {
    color: #fff;
}

.catalog-concept {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    min-height: 500px;
    height: 723px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-bg-muted);
    box-shadow: 0 8px 48px rgba(44, 40, 37, 0.08);
}

.catalog-concept__media {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.catalog-concept__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.catalog-concept__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

.catalog-concept__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.9);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #000;
}

.catalog-concept__caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 1;
}

.catalog-concept__tagline {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.catalog-concept__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 41px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 8px 0 0;
}

.catalog-concept__aside {
    display: flex;
    flex-direction: column;
    padding: 48px;
    min-width: 0;
    overflow: hidden;
}

.catalog-concept__overview {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.catalog-concept__overview h3,
.catalog-concept__products h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin: 0;
}

.catalog-concept__overview p {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: var(--color-text-secondary);
}

.catalog-concept__products {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.catalog-concept__products[hidden] {
    display: none;
}

.catalog-concept:has(.catalog-concept__products[hidden]) .catalog-concept__overview {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.catalog-concept__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.catalog-concept__list li {
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text);
}

.catalog-concept__product {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 6px 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s var(--ease);
}

.catalog-concept__product span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    white-space: normal;
}

.catalog-concept__product:hover,
.catalog-concept__product:focus-visible {
    color: var(--color-accent);
}

.catalog-concept__product:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 2px;
}

.catalog-concept__list img {
    width: 16px;
    height: 10px;
    flex-shrink: 0;
    max-width: none;
}

.catalog-concept__gallery {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    min-width: 0;
}

.catalog-concept__gallery[hidden] {
    display: none;
}

.catalog-concept__nav {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-bg-elevated);
    color: var(--color-text);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.catalog-concept__nav:hover:not(:disabled),
.catalog-concept__nav:focus-visible:not(:disabled) {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.catalog-concept__nav:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 2px;
}

.catalog-concept__nav:disabled {
    opacity: 0.28;
    cursor: default;
}

.catalog-concept__thumbs {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    cursor: grab;
    scrollbar-width: none;
}

.catalog-concept__thumbs.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.catalog-concept__thumbs::-webkit-scrollbar {
    display: none;
}

.catalog-concept__thumb {
    display: block;
    width: 159px;
    height: 166px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    overflow: hidden;
    scroll-snap-align: start;
}

.catalog-concept__thumb img {
    width: 159px;
    height: 166px;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .catalog-concept {
        grid-template-columns: minmax(0, 1fr);
        height: auto;
    }

    .catalog-concept__media {
        height: min(72vw, 520px);
        min-height: 320px;
    }

    .catalog-concept__aside {
        padding: 32px 24px 24px;
    }
}

@media (max-width: 768px) {
    .catalog-concepts__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .catalog-concept__gallery {
        margin-inline: -8px;
    }

    .catalog-concept__thumbs {
        padding-inline: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-concepts__tab,
    .catalog-concept__nav {
        transition: none;
    }

    .catalog-concept__thumbs {
        scroll-behavior: auto;
    }
}

.magazine-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(32px, 4vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.magazine-layout--reverse {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.magazine-layout--reverse .magazine-sidebar {
    order: 2;
}

.magazine-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.magazine-sidebar__label {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: 0;
}

.magazine-sidebar__nav {
    list-style: none;
}

.magazine-sidebar__nav li {
    margin-bottom: 4px;
}

.magazine-sidebar__nav a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    border-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.magazine-sidebar__nav a:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.magazine-sidebar__nav a.active {
    background: var(--color-bg-muted);
    color: var(--color-accent-hover);
    font-weight: 600;
}

.magazine-sidebar__meta {
    margin-bottom: 24px;
}

.magazine-sidebar__meta h3 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    margin-bottom: 6px;
}

.magazine-sidebar__meta p,
.magazine-sidebar__meta a {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

.magazine-sidebar__meta a:hover {
    color: var(--color-accent);
}

.magazine-article {
    max-width: 680px;
    min-width: 0;
}

.magazine-article--wide {
    max-width: none;
}

.magazine-article--centered {
    max-width: 680px;
    margin: 0 auto;
}

.magazine-article h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

.magazine-article h3 {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
}

.magazine-article p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.magazine-article p:last-child {
    margin-bottom: 0;
}

.magazine-chapter {
    margin-bottom: clamp(40px, 5vw, 56px);
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.magazine-chapter:last-child {
    margin-bottom: 0;
}

.magazine-chapter__intro {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.magazine-page--catalog .magazine-chapter__intro--showroom {
    margin-bottom: clamp(28px, 4vw, 40px);
    padding-bottom: 0;
    border-bottom: none;
}

.magazine-page--catalog .magazine-chapter__intro-body {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(20px, 2.5vw, 28px);
}

.magazine-page--catalog .magazine-chapter__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0;
    padding-bottom: 14px;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-accent);
    width: fit-content;
    max-width: 100%;
}

.magazine-page--catalog .magazine-chapter__count {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    flex-shrink: 0;
}

.magazine-page--catalog .magazine-chapter__subs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(16px, 2.5vw, 28px);
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 2px;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s var(--ease) 0.12s, transform 0.55s var(--ease) 0.12s;
}

.magazine-page--catalog .magazine-chapter__intro--showroom.visible .magazine-chapter__subs {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .magazine-page--catalog .magazine-chapter__subs {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.magazine-page--catalog .magazine-chapter__subs::-webkit-scrollbar {
    display: none;
}

.magazine-page--catalog .magazine-chapter__sub {
    flex-shrink: 0;
    appearance: none;
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 6px 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
    cursor: pointer;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.magazine-page--catalog .magazine-chapter__sub:hover,
.magazine-page--catalog .magazine-chapter__sub:focus-visible {
    color: var(--color-text);
    outline: none;
}

.magazine-page--catalog .magazine-chapter__sub.is-active {
    color: var(--color-accent-hover);
    border-bottom-color: var(--color-accent);
}

.magazine-page--catalog .magazine-chapter__grid {
    margin-top: clamp(8px, 1.5vw, 16px);
}

.magazine-chapter__grid {
    padding: 0;
    margin: 0;
    max-width: none;
}

.magazine-chapter__label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.magazine-pullquote {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    color: var(--color-text);
    margin: 40px 0;
    padding: 24px 0 24px 24px;
    border-left: 3px solid var(--color-accent);
}

.magazine-image-break {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 480px;
    overflow: hidden;
    margin: clamp(48px, 6vw, 64px) 0;
    background: var(--color-bg-muted);
}

.magazine-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-image-break--flush {
    margin-left: calc(-1 * var(--space-gutter));
    margin-right: calc(-1 * var(--space-gutter));
    width: calc(100% + 2 * var(--space-gutter));
    max-width: 100vw;
}

.magazine-callout {
    margin-top: 40px;
    padding: 24px 28px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-muted);
}

.magazine-callout p {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}

.magazine-callout .btn {
    margin-top: 4px;
}

.magazine-callout__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.magazine-value {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.magazine-value:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.magazine-value__number {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.magazine-value h3 {
    margin-bottom: 8px;
}

.magazine-value p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Magazine cover spread (news) */
.magazine-cover {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(40px, 6vw, 56px);
    aspect-ratio: 16 / 9;
    background: var(--color-bg-muted);
}

.magazine-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.magazine-cover:hover img {
    transform: scale(1.02);
}

.magazine-cover__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 4vw, 40px);
    background: linear-gradient(to top, rgba(44, 40, 37, 0.88) 0%, transparent 100%);
    color: #fff;
}

.magazine-cover__category {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 8px;
}

.magazine-cover__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 8px;
}

.magazine-cover__excerpt {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 560px;
}

/* Magazine index list */
.magazine-index {
    list-style: none;
}

.magazine-index__item {
    border-bottom: 1px solid var(--color-border);
}

.magazine-index__link {
    display: grid;
    grid-template-columns: minmax(88px, 110px) minmax(72px, 100px) minmax(0, 1fr) 72px;
    gap: clamp(12px, 2vw, 20px);
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.magazine-index__link:hover {
    color: var(--color-accent);
}

.magazine-index__link:hover .magazine-index__title {
    color: var(--color-accent);
}

.magazine-index__date {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.magazine-index__category {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.magazine-index__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-text);
    transition: var(--transition);
}

.magazine-index__thumb {
    width: 72px;
    height: 54px;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.magazine-index__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Magazine product entries */
.magazine-product-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.magazine-product-entry:first-child {
    padding-top: 0;
}

.magazine-product-entry:last-child {
    border-bottom: none;
}

.magazine-product-entry--reverse {
    direction: rtl;
}

.magazine-product-entry--reverse > * {
    direction: ltr;
}

.magazine-product-entry__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.magazine-product-entry__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.magazine-product-entry:hover .magazine-product-entry__image img {
    transform: scale(1.03);
}

.magazine-product-entry--link {
    display: grid;
    text-decoration: none;
    color: inherit;
}

.magazine-product-entry__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.magazine-product-entry__tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.magazine-product-entry__code {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-accent-hover);
    margin-bottom: 6px;
}

.magazine-product-entry__name {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
}

.magazine-product-entry__specs {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.magazine-product-entry__specs li {
    margin-bottom: 4px;
    list-style: none;
    padding-left: 14px;
    position: relative;
}

.magazine-product-entry__specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
}

.magazine-product-entry__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.magazine-product-entry__view {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
}

.magazine-product-entry__inquire {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-accent-hover);
}

.magazine-product-entry__inquire:hover {
    text-decoration: underline;
}

/* Magazine project entries (references) */
.magazine-project {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.magazine-project:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.magazine-project__location {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.magazine-project__name {
    font-family: var(--font-body);
    font-size: var(--text-product-name);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 16px;
}

.magazine-project__scope {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.magazine-project__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.magazine-project__tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

/* Magazine article detail */
.magazine-article-lead {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 560px;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.magazine-article-lead img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-article-header {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.magazine-article-header .magazine-index__category {
    display: inline-block;
    margin-bottom: 12px;
}

.magazine-article-header time {
    font-size: 13px;
    color: var(--color-text-tertiary);
    margin-left: 12px;
}

.magazine-article-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
}

.magazine-article-lead-text {
    font-size: 18px;
    line-height: 1.65;
    color: var(--color-text-secondary);
}

.magazine-article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.magazine-article-body p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 3.2em;
    float: left;
    line-height: 0.85;
    margin: 0.08em 0.12em 0 0;
    color: var(--color-accent);
}

.magazine-related {
    margin-top: clamp(48px, 6vw, 64px);
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.magazine-related h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 24px;
}

.magazine-back-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    transition: var(--transition);
}

.magazine-back-link:hover {
    color: var(--color-accent);
}

/* News article — title-first reading layout */
.news-article-page {
    background: var(--color-bg-elevated);
}

.news-article {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 56px) var(--space-gutter) clamp(48px, 6vw, 64px);
}

.news-article__nav {
    margin-bottom: 24px;
}

.news-article__nav .magazine-back-link {
    margin-bottom: 0;
}

.news-article__header {
    margin-bottom: 32px;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.news-article__category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.news-article__meta time::before,
.news-article__read::before {
    content: "·";
    margin-right: 12px;
    color: var(--color-border);
}

.news-article__header h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 64px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.news-article__dek {
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

.news-article__hero {
    margin: 0 0 32px;
    overflow: hidden;
    background: var(--color-bg-muted);
}

.news-article__hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    object-fit: cover;
}

.news-article__body p {
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.news-article__body p:last-child {
    margin-bottom: 0;
}

.news-article__cta {
    margin-top: 40px;
    padding: 24px;
    background: var(--color-bg-muted);
    border: 1px solid var(--color-border);
}

.news-article__cta p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.news-article__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.news-article__related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.news-article__related h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    margin-bottom: 24px;
}

.news-article--empty {
    text-align: left;
}

.news-article--empty h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 64px);
    font-weight: 500;
    margin: 0 0 12px;
}

.news-article--empty p {
    font-size: clamp(17px, 1.6vw, 19px);
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

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

/* Full-bleed map band */
.magazine-map-band {
    width: 100%;
    height: clamp(360px, 50vh, 520px);
    background: var(--color-bg-muted);
}

.magazine-map-band iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Magazine responsive */
@media (max-width: 1024px) {
    .magazine-layout,
    .magazine-layout--reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .magazine-layout--reverse .magazine-sidebar {
        order: 0;
    }

    .magazine-sidebar {
        position: static;
        display: block;
        padding-bottom: 24px;
        border-bottom: 0;
        margin-bottom: 8px;
    }

    .magazine-sidebar__nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .magazine-sidebar__nav::-webkit-scrollbar {
        display: none;
    }

    .magazine-sidebar__nav li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .magazine-sidebar__nav a {
        white-space: nowrap;
    }

    .magazine-product-entry,
    .magazine-product-entry--reverse {
        grid-template-columns: minmax(0, 1fr);
        direction: ltr;
    }

    .magazine-index__link {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .magazine-index__thumb {
        display: none;
    }

    .magazine-page--catalog .magazine-chapter__intro-body {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .magazine-lead {
        aspect-ratio: 16 / 10;
        max-height: 320px;
    }

    .magazine-lead--tall {
        max-height: 360px;
    }

    .magazine-cover {
        aspect-ratio: 4 / 3;
    }

    .magazine-image-break {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }

    .magazine-article-lead {
        aspect-ratio: 16 / 10;
        max-height: 320px;
    }
}
