/* ============================================
   WOODINE - Premium Furniture Website
   Inspired by: artisan.ba, De La Espada,
   TEAM 7, Sun at Six, Man of Parts
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --color-bg: #faf8f5;
    --color-bg-dark: #1a1714;
    --color-bg-cream: #f5f0eb;
    --color-text: #1a1714;
    --color-text-light: #6b6560;
    --color-text-muted: #9e9892;
    --color-accent: #a07828;
    --color-accent-light: #c9a96e;
    --color-walnut: #3e2723;
    --color-walnut-light: #5d4037;
    --color-border: #e0dbd5;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 90px;
    --container-width: 1400px;
    --gap: 40px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.8s;
    --duration-fast: 0.4s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

body.menu-open {
    overflow: hidden;
}

body.loading {
    overflow: hidden;
}

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

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

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

/* --- Placeholder Images --- */
.placeholder-img {
    background: linear-gradient(145deg, #3e2723 0%, #5d4037 40%, #795548 70%, #8d6e63 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: attr(data-placeholder);
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    z-index: 1;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(139,105,20,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: #1a1a2e;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.preloader-logo-fill {
    width: 138px;
    height: auto;
    margin: 0 auto 16px;
    position: relative;
}

.preloader-logo-gray {
    width: 100%;
    height: auto;
    filter: brightness(0.3);
}

.preloader-logo-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    overflow: hidden;
    animation: logoFill 1.8s var(--ease-in-out) forwards;
}

.preloader-logo-color {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes logoFill {
    to { height: 100%; }
}

/* --- Custom Cursor --- */
.cursor, .cursor-follower {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor {
        display: block;
        width: 6px;
        height: 6px;
        background: var(--color-accent);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.2s var(--ease-out), opacity 0.4s;
    }

    .cursor-follower {
        display: block;
        width: 28px;
        height: 28px;
        border: 0.5px solid var(--color-accent);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.3s var(--ease-out), width 0.5s var(--ease-out), height 0.5s var(--ease-out), opacity 0.5s;
        opacity: 0.35;
    }

    .cursor.hover {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.4;
    }

    .cursor-follower.hover {
        width: 38px;
        height: 38px;
        opacity: 0.2;
    }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    z-index: 1001;
}

.nav-logo-icon {
    width: 64px;
    height: auto;
    opacity: 0.85;
    transition: width 0.5s var(--ease-out), opacity 0.3s;
    margin: -6px 0;
}

.nav-logo:hover .nav-logo-icon {
    opacity: 1;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-white);
    transition: color 0.5s;
}

.nav.scrolled .logo-text {
    color: var(--color-text);
}

.logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    transition: color 0.5s;
    margin-top: -1px;
}

.nav.scrolled .logo-sub {
    color: var(--color-text-muted);
}

.nav.scrolled .nav-logo-icon {
    width: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.5);
    transition: width 0.4s var(--ease-out), background 0.3s;
}

.nav-link:hover {
    color: rgba(255,255,255,0.95);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-accent-light);
}

.nav.scrolled .nav-link {
    color: var(--color-text-muted);
}

.nav.scrolled .nav-link:hover {
    color: var(--color-text);
}

.nav.scrolled .nav-link:hover::after {
    background: var(--color-text-muted);
}

.nav.scrolled .nav-link.active {
    color: var(--color-text);
}

.nav.scrolled .nav-link.active::after {
    background: var(--color-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 1001;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
    padding: 4px;
}

.lang-btn.active {
    color: rgba(255,255,255,0.95);
}

.nav.scrolled .lang-btn {
    color: var(--color-text-muted);
}

.nav.scrolled .lang-btn.active {
    color: var(--color-text);
}

.lang-divider {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.5s;
}

.nav.scrolled .lang-divider {
    color: var(--color-border);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-text);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    overflow: hidden;
}

.mobile-link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-white);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-out), color 0.3s;
    transition-delay: calc(var(--i, 0) * 0.08s);
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) .mobile-link { --i: 1; }
.mobile-nav-links li:nth-child(2) .mobile-link { --i: 2; }
.mobile-nav-links li:nth-child(3) .mobile-link { --i: 3; }
.mobile-nav-links li:nth-child(4) .mobile-link { --i: 4; }
.mobile-nav-links li:nth-child(5) .mobile-link { --i: 5; }
.mobile-nav-links li:nth-child(6) .mobile-link { --i: 6; }

.mobile-link::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-accent-light);
}

.mobile-link:hover {
    color: var(--color-accent-light);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mobile-social {
    display: flex;
    gap: 24px;
}

.mobile-social a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-social a:hover {
    color: var(--color-white);
}

.mobile-email {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    background: #1a1a2e;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease-in-out);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: transform 8s linear;
    background-size: auto 100%;
    background-position: right 72.5%;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
}

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

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            #1a1a2e 0%,
            #1a1a2e 25%,
            transparent 45%
        ),
        linear-gradient(
            to bottom,
            rgba(26, 26, 46, 0.3) 0%,
            rgba(26, 26, 46, 0.1) 40%,
            rgba(26, 26, 46, 0.5) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tag-line {
    width: 48px;
    height: 1px;
    background: var(--color-accent-light);
}

.tag-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    font-size: clamp(3.2rem, 7.4vw, 7rem);
}

.hero-line[data-i18n="hero.line2"] {
    font-size: clamp(2.7rem, 6.5vw, 6rem);
}

.hero-line:last-child {
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent-light);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-footer {
    position: absolute;
    bottom: 28px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    pointer-events: none;
    max-width: calc(var(--container-width) - 120px);
    margin: 0 auto;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--color-accent-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--color-walnut);
    transform: translateY(-2px);
}

.btn-dark {
    background: #3e2723;
    color: #f5f0eb;
    padding: 18px 48px;
    border: 1px solid rgba(93, 64, 55, 0.3);
}

.btn-dark:hover {
    background: #5d4037;
    color: #f5f0eb;
    border-color: rgba(93, 64, 55, 0.5);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Marquee --- */
.marquee-section {
    padding: 28px 0;
    background: #1a1a2e;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.marquee-dot {
    width: 4px !important;
    height: 4px;
    background: var(--color-accent-light) !important;
    border-radius: 50%;
    display: inline-block;
    font-size: 0 !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* --- Section Labels & Titles --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.label-index {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    font-style: italic;
}

.label-line {
    width: 48px;
    height: 1px;
    background: var(--color-accent);
}

.label-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.section-header {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 120px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-top {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-accent);
    font-weight: 300;
    margin-left: 2px;
    position: relative;
    top: -10px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-top: 8px;
    line-height: 1.5;
}

.about-right {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 0;
    position: relative;
    background: var(--color-bg-cream);
}

.about-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-image-detail {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.about-image-detail > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-text {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    background: var(--color-walnut);
    border-left: 2px solid var(--color-accent-light);
    max-width: max-content;
    height: 120px;
    box-sizing: border-box;
}

.image-overlay-text span {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.image-overlay-text span:first-child {
    color: #e8c98a;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.about-image-small {
    position: absolute;
    bottom: -120px;
    right: -50px;
    width: 220px;
    z-index: 5;
    box-shadow: 0 24px 60px rgba(26, 23, 20, 0.18);
}

/* --- Collections Section --- */
.collections {
    background: var(--color-white);
    padding-bottom: calc(var(--section-padding) * 0.45);
}

.collection-filter {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.filter-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: none;
    border: none;
    background: none;
    color: var(--color-text-light);
    transition: all 0.3s var(--ease-out);
    font-weight: 400;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
}

.filter-btn:first-child {
    padding-left: 0;
}

.filter-btn:first-child::after {
    left: 0;
    transform: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-walnut-light);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-out), background 0.3s;
}

.filter-btn:hover {
    color: var(--color-text);
}

.filter-btn:hover::after {
    width: calc(100% - 28px);
    background: var(--color-walnut-light);
}

.filter-btn.active {
    color: var(--color-walnut);
    font-weight: 500;
}

.filter-btn.active::after {
    width: calc(100% - 28px);
    background: var(--color-walnut);
}

.products-slider {
    position: relative;
    margin-bottom: 64px;
}

.products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 16px;
    margin: 0 -4px;
    touch-action: pan-x;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    scroll-snap-align: start;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.product-card.is-outdoor-priority {
    order: -1;
}

.products-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    box-shadow: 0 6px 20px rgba(26, 23, 20, 0.08);
}

.products-arrow:hover {
    background: var(--color-walnut);
    color: #f5f0eb;
    border-color: var(--color-walnut);
}

.products-arrow.is-hidden {
    display: none !important;
}

.products-prev {
    left: -24px;
}

.products-next {
    right: -24px;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-image.is-mirrored {
    transform: scaleX(-1);
}

.product-card:hover .product-image.is-mirrored {
    transform: scaleX(-1) scale(1.06);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

img.product-image {
    background: var(--color-bg-cream);
    cursor: zoom-in;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding: 20px 0;
}

.product-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 0 0;
    flex-wrap: wrap;
}

.product-thumb {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    background: var(--color-bg-cream);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    flex-shrink: 0;
}

.product-thumb:hover {
    border-color: var(--color-text-light);
    transform: translateY(-1px);
}

.product-thumb.is-active {
    border-color: var(--color-accent);
    border-width: 1.5px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.product-material {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.collections-cta {
    text-align: center;
}

.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 0 28px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
}

.swipe-hint svg {
    opacity: 0.55;
    animation: swipe-nudge 1.8s var(--ease-in-out) infinite;
}

@keyframes swipe-nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .swipe-hint { display: inline-flex; width: 100%; }
}

/* --- Craftsmanship Section --- */
.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.craft-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 300;
}

.craft-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.craft-step {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 20px;
}

.step-image {
    height: 240px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.step-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Image Break --- */
.image-break {
    position: relative;
}

.image-break-inner {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break-inner.placeholder-img {
    background: #1a1a2e;
}

.image-break-content {
    text-align: center;
    max-width: 700px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.image-break-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.image-break-content cite {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    font-style: normal;
    font-weight: 400;
}

/* --- Projects Section --- */
.projects {
    background: var(--color-white);
}

/* --- Selected Projects List --- */
.projects-list {
    margin-top: 24px;
    padding: 64px 56px;
    background: var(--color-bg-cream);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.projects-list-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--color-text);
    margin: 0 0 32px;
    letter-spacing: 0.01em;
}

.projects-list-items {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.projects-list-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px 24px;
    padding: 22px 0;
    border-top: 1px solid var(--color-border);
}

.projects-list-item:last-child {
    border-bottom: 1px solid var(--color-border);
}

.projects-list-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.005em;
}

.projects-list-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 500;
}

.projects-list-dot {
    color: var(--color-accent);
    font-weight: 400;
}

.projects-list-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .projects-list { padding: 40px 24px; }
    .projects-list-title { font-size: 1.3rem; margin-bottom: 24px; }
    .projects-list-name { font-size: 1.15rem; }
    .projects-list-meta { font-size: 0.7rem; letter-spacing: 0.1em; }
    .projects-list-item { padding: 18px 0; }
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 48px;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 500;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    transition: color 0.3s;
}

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

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

.social-links a {
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: 80px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 32px;
    height: auto;
    opacity: 0.75;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-top: 6px;
    padding-left: 42px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-bottom: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding: 64px 0;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- About Values --- */
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.value-icon {
    color: var(--color-accent);
    font-size: 0.6rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    font-weight: 300;
}

/* --- B2B Features --- */
.b2b-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.b2b-item span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.b2b-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .nav-inner { padding: 0 40px; }
    .hero-content { padding: 0 40px; }
    .hero-footer { left: 40px; right: 40px; }
    .showcase-track { padding: 0 40px; }
    .product-card { flex: 0 0 calc((100% - 48px) / 3); }
    :root { --section-padding: 70px; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-small { position: relative; bottom: auto; right: auto; }

    .craft-grid { grid-template-columns: 1fr; gap: 32px; }
    .craft-steps { grid-template-columns: repeat(2, 1fr); }

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

    .product-card { flex: 0 0 calc((100% - 24px) / 2); }
    .products-arrow { width: 42px; height: 42px; }
    .products-prev { left: -12px; }
    .products-next { right: -12px; }

    .b2b-features { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; }
    .hero-content { padding: 0 24px; }
    .hero-footer { left: 24px; right: 24px; }
    .showcase-track { padding: 0 24px; }

    :root { --section-padding: 56px; }

    .hero-line { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-line[data-i18n="hero.line2"] { font-size: clamp(2.1rem, 8.5vw, 3.5rem); }

    .hero-footer { flex-direction: column; align-items: flex-start; gap: 24px; }
    .hero-scroll { flex-direction: row; }
    .hero-scroll span { writing-mode: horizontal-tb; }
    .scroll-line { width: 40px; height: 1px; }

    .mobile-menu-inner { padding: 100px 24px 40px; }
    .mobile-link { font-size: 2.2rem; }

    .about-stats { gap: 32px; }
    .stat-number { font-size: 2.5rem; }

    .products-grid { gap: 16px; }
    .product-card { flex: 0 0 calc((100% - 16px) / 2); }
    .products-arrow { display: none; }

    .craft-steps { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }

    .showcase-item { width: 320px; }
    .showcase-img { height: 260px; }

    .image-break-inner { height: 400px; }
    .image-break-content blockquote { font-size: 1.2rem; }

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

}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 24px; }
    .hero-cta .btn { text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* --- Image Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 12, 10, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox.is-open {
    display: flex;
    animation: lightbox-fade 0.25s ease-out;
}

@keyframes lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
}

.lightbox-stage.is-zoomed {
    cursor: grab;
}

.lightbox-stage.is-panning {
    cursor: grabbing;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.25s var(--ease-out);
    transform-origin: center center;
    will-change: transform;
}

.lightbox-stage.is-panning .lightbox-image {
    transition: none;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5f0eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.lightbox-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.5);
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.lightbox.is-zoomed .lightbox-hint {
    opacity: 0;
}

@media (max-width: 768px) {
    .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
    .lightbox-hint { font-size: 0.62rem; bottom: 16px; }
    .lightbox-image { max-width: 96vw; max-height: 82vh; }
}

/* --- Bilingual content blocks (for static info pages) --- */
[data-lang-content] { display: none; }
html[lang="en"] [data-lang-content="en"] { display: block; }
html[lang="tr"] [data-lang-content="tr"] { display: block; }

/* --- Info Page Layout --- */
.info-page {
    padding-top: 140px;
    padding-bottom: 120px;
    background: var(--color-bg);
    min-height: 80vh;
}
.info-page .container { max-width: 880px; }
.info-page h1 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.info-page h1 em { font-style: italic; color: var(--color-accent); font-weight: 400; }
.info-page .info-sub {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 12px;
    display: block;
}
.info-page h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.65rem;
    margin-top: 56px;
    margin-bottom: 14px;
    color: var(--color-text);
}
.info-page h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.15rem;
    margin-top: 28px;
    margin-bottom: 8px;
    color: var(--color-text);
}
.info-page p, .info-page li {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 14px;
}
.info-page ul { padding-left: 22px; margin-bottom: 18px; }
.info-page strong { color: var(--color-text); font-weight: 500; }
.info-page hr { border: none; border-top: 1px solid var(--color-border); margin: 56px 0; }
.info-page .info-meta {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.info-faq-q {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 36px 0 10px;
}

/* Newsletter email CTA replacement */
.newsletter-email-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent-light);
    border-bottom: 1px solid rgba(201, 169, 110, 0.4);
    padding-bottom: 4px;
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.newsletter-email-cta:hover {
    color: #fff;
    border-color: #fff;
}

.form-consent {
    margin-top: 16px;
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}
.form-consent a {
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.form-consent a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.section-note {
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
}

.info-related {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.info-related .info-sub {
    margin-bottom: 8px;
}
.info-related p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    margin: 0;
}
.info-related a {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.info-related a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* --- Materials & Manufacturing block --- */
.materials-block {
    margin-top: 72px;
    padding: 36px 40px;
    background: var(--color-bg-cream);
    border-left: 2px solid var(--color-accent-light);
    max-width: 760px;
}
.materials-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: 0.005em;
}
.materials-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin: 0;
}
@media (max-width: 768px) {
    .materials-block { padding: 28px 24px; margin-top: 48px; }
    .materials-title { font-size: 1.25rem; }
    .materials-text { font-size: 0.95rem; }
}

/* --- Capability Landing Page --- */
.capability-page { background: var(--color-bg); }

.capability-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 160px;
    background: var(--color-bg-dark);
}
.capability-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.capability-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: contrast(1.05) brightness(0.85);
}
.capability-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.85) 100%);
    z-index: 1;
}
.capability-hero-content {
    position: relative;
    z-index: 2;
    color: #f5f0eb;
    max-width: 900px;
}
.capability-hero-content .info-sub {
    color: var(--color-accent-light);
    margin-bottom: 18px;
}
.capability-hero h1 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.005em;
    color: #fff;
}
.capability-hero h1 em {
    font-style: italic;
    color: var(--color-accent-light);
    font-weight: 300;
}
.capability-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(245, 240, 235, 0.78);
    margin-bottom: 36px;
    max-width: 640px;
}
.capability-cta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.capability-cta .btn-primary {
    background: var(--color-accent);
    color: #fff;
}
.capability-cta .btn-primary:hover {
    background: var(--color-walnut);
}

.capability-intro {
    padding: 96px 0 64px;
}
.capability-lead {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    line-height: 1.5;
    color: var(--color-text);
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.capability-grid-section {
    padding: 80px 0 96px;
    background: var(--color-bg-cream);
}
.info-page-header {
    margin-bottom: 56px;
    text-align: center;
}
.info-page-header .info-sub {
    margin-bottom: 14px;
    display: block;
}
.info-page-header h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--color-text);
    margin: 0;
}
.info-page-header h2 em {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 400;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.capability-card {
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(26, 23, 20, 0.06);
}
.capability-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 14px;
    letter-spacing: 0.18em;
}
.capability-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 10px;
}
.capability-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

.capability-visual {
    padding: 0;
    background: var(--color-bg-cream);
}
.capability-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.capability-visual-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-cream);
}
.capability-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--ease-out);
}
.capability-visual-item:hover img {
    transform: scale(1.04);
}

.capability-materials {
    padding: 96px 0;
}
.capability-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-text-light);
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.capability-trust {
    padding: 80px 0;
    background: var(--color-walnut);
    color: #f5f0eb;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}
.trust-item {
    text-align: center;
}
.trust-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 3.2rem;
    color: var(--color-accent-light);
    margin-bottom: 14px;
    line-height: 1;
}
.trust-num svg { color: var(--color-accent-light); }
.trust-item p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(245, 240, 235, 0.8);
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.capability-cta-final {
    padding: 112px 0 128px;
    text-align: center;
    background: var(--color-bg);
}
.capability-cta-final h2 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 18px;
}
.capability-cta-final p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--color-text-light);
    max-width: 620px;
    margin: 0 auto 36px;
}
.capability-cta-final .capability-cta {
    justify-content: center;
}

@media (max-width: 1024px) {
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .capability-visual-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .capability-hero { min-height: 60vh; padding-top: 120px; padding-bottom: 56px; }
    .capability-intro { padding: 64px 0 40px; }
    .capability-grid-section { padding: 56px 0 72px; }
    .capability-grid { grid-template-columns: 1fr; gap: 20px; }
    .capability-visual-grid { grid-template-columns: 1fr 1fr; }
    .capability-materials { padding: 64px 0; }
    .capability-cta-final { padding: 80px 0 96px; }
    .capability-cta { width: 100%; }
    .capability-cta .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
}

.capability-microcopy {
    margin-top: 20px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-style: normal;
}

/* ============================================
   MOBILE RESPONSIVE FIXES — overflow, collage, hero, tabs
   Desktop styles untouched. All scoped to @media.
   ============================================ */

/* Global horizontal overflow safety (also html, not just body) */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    /* --- Container & section overflow safety --- */
    body, main, section, footer { max-width: 100vw; overflow-x: clip; }
    .container { padding: 0 20px; max-width: 100%; }
    .nav-inner { padding: 0 20px; }

    img, video, iframe { max-width: 100%; height: auto; }

    /* --- Hero --- */
    .hero {
        min-height: 88vh;
        height: 88vh;
    }
    .hero-slide-bg {
        background-size: cover !important;
        background-position: center center !important;
    }
    .hero-content { padding: 0 20px; max-width: 100%; }
    .hero-tag {
        font-size: 0.7rem !important;
    }
    .hero-line {
        font-size: clamp(2.6rem, 11vw, 3.2rem) !important;
        line-height: 1.05;
    }
    .hero-desc {
        font-size: 1.05rem !important;
        line-height: 1.6;
        max-width: 100%;
    }

    /* --- About — kill collage, stack vertically --- */
    .about-grid { gap: 40px; }
    .about-right { position: static; }
    .about-image-wrapper { margin-bottom: 0; }
    .about-image {
        aspect-ratio: 4 / 3;
        width: 100%;
    }
    .about-image > img { object-position: center center; }

    /* Decouple small detail from absolute overlap on mobile */
    .about-image-small {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-top: 16px;
        z-index: auto;
    }
    .about-image-detail {
        aspect-ratio: 4 / 3;
        width: 100%;
    }

    /* Overlay text frame: keep flush look but make sure it doesn't overflow */
    .image-overlay-text {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        height: auto !important;
        max-width: 90%;
        padding: 12px 16px !important;
    }
    .image-overlay-text span { font-size: 0.78rem !important; }
    .image-overlay-text span:first-child { font-size: 0.62rem !important; }

    /* --- Stats — clean single column --- */
    .about-stats {
        flex-direction: column !important;
        gap: 40px !important;
        margin-top: 56px !important;
        padding-top: 28px;
        align-items: flex-start;
    }
    .stat { width: 100%; }
    .stat-number { font-size: 2.4rem !important; }

    /* --- Collection filter tabs — horizontal scrollable --- */
    .collection-filter {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
        white-space: nowrap;
    }
    .collection-filter::-webkit-scrollbar { display: none; }
    .filter-btn {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    /* --- Products slider --- */
    .products-slider { max-width: 100%; }
    .product-card { flex: 0 0 calc((100% - 16px) / 2); min-width: 0; }

    /* --- Catalogue button --- */
    .collections-cta { padding: 0 20px; }
    .collections-cta .btn {
        max-width: 100%;
        width: auto;
        white-space: normal;
        text-align: center;
    }

    /* --- Marquee — prevent overflow contributing to page width --- */
    .marquee-section { overflow: hidden; max-width: 100vw; }
    .marquee-track { will-change: transform; }

    /* --- Footer --- */
    .footer-grid { gap: 24px 16px; }
    .footer-col { min-width: 0; }
    .footer-newsletter { width: 100%; }
    .newsletter-email-cta {
        font-size: 1rem;
        word-break: break-all;
        max-width: 100%;
    }

    /* --- Capability landing pages --- */
    .capability-hero { padding-top: 110px; padding-bottom: 48px; min-height: 60vh; }
    .capability-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .capability-sub { font-size: 1rem; }
    .capability-cta .btn { flex: 1 1 auto; min-width: 0; }
    .trust-num { font-size: 2.6rem; }

    /* --- Info pages --- */
    .info-page { padding-top: 110px; padding-bottom: 72px; }
    .info-page h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .nav-inner { padding: 0 18px; }
    .hero-content { padding: 0 18px; }

    .hero { min-height: 90vh; height: auto; }

    .about-stats { gap: 32px !important; }
    .stat-number { font-size: 2.1rem !important; }

    /* If 2-col products feel cramped, switch to 1 wider card */
    .product-card { flex: 0 0 78% !important; }

    /* Footer compact */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col h4 { font-size: 0.78rem; }
    .footer-col ul li a { font-size: 0.85rem; }
}

/* ============================================
   MOBILE PASS 2 — overflow root-cause, hero overlay, about caption, stats row
   Scoped to @media; desktop untouched.
   ============================================ */

@media (max-width: 768px) {
    /* --- Genuine overflow sources --- */
    .hero, .hero-slider, .hero-slide, .hero-slide-bg { max-width: 100vw; }
    .marquee-section, .marquee-track { max-width: 100vw; overflow: hidden; }
    .about-grid, .craft-grid, .contact-grid { max-width: 100%; }
    .footer, .footer-grid, .footer-top { max-width: 100%; overflow: hidden; }
    .image-overlay-text { max-width: calc(100vw - 40px) !important; }
    .capability-hero, .capability-hero-image, .capability-grid, .trust-grid { max-width: 100vw; }
    .info-page, .info-page .container { max-width: 100vw; overflow-x: hidden; }
    nav, .nav, .nav-inner, .mobile-menu { max-width: 100vw; }
    pre, code, blockquote { word-break: break-word; max-width: 100%; }

    /* --- Hero overlay: kill left navy panel, keep soft full-image gradient --- */
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(26, 26, 46, 0.25) 0%, rgba(26, 26, 46, 0.32) 100%) !important;
    }

    /* --- Hero alignment & spacing: pull text up --- */
    .hero {
        align-items: flex-start;
        padding-top: 96px;
        padding-bottom: 32px;
        min-height: 86vh;
        height: auto;
    }
    .hero-content { padding-top: 0; }
    .hero-tag { margin-bottom: 16px; }
    .hero-title { margin-bottom: 18px; }
    .hero-desc { margin-bottom: 0; }

    /* Hero image: better focal point on mobile */
    .hero-slide-bg {
        background-position: 55% 60% !important;
    }

    /* Reveal-up: keep text starting position visible (no -40px translate hiding above fold) */
    .hero .reveal-up { opacity: 1 !important; transform: none !important; }

    /* --- About image overlay text: move OUT of image, sit below as caption --- */
    .image-overlay-text {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        height: auto !important;
        max-width: 100% !important;
        margin-top: 0;
        padding: 14px 18px !important;
        background: var(--color-walnut);
        border-left: 2px solid var(--color-accent-light);
    }
    .image-overlay-text span:first-child { font-size: 0.62rem !important; }
    .image-overlay-text span { font-size: 0.78rem !important; }

    /* --- Stats: 3 columns horizontal on mobile, compact --- */
    .about-stats {
        flex-direction: row !important;
        gap: 12px !important;
        margin-top: 48px !important;
        padding-top: 24px;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .stat {
        flex: 1 1 0;
        min-width: 0;
        text-align: left;
    }
    .stat-top { gap: 0; }
    .stat-number { font-size: 1.85rem !important; line-height: 1; }
    .stat-suffix { font-size: 1rem; }
    .stat-label {
        font-size: 0.62rem !important;
        line-height: 1.35;
        margin-top: 6px;
        letter-spacing: 0.04em;
        word-break: normal;
    }

    /* --- Section spacing: tighter on mobile transitions --- */
    .about.section { padding-bottom: 56px; }
    .craftsmanship.section { padding-top: 40px; }
    .craft-grid { gap: 24px; }
    .craft-steps { gap: 28px; margin-top: 32px; }
    .materials-block { margin-top: 36px; padding: 24px 20px; }
}

@media (max-width: 480px) {
    .stat-number { font-size: 1.65rem !important; }
    .stat-label { font-size: 0.58rem !important; letter-spacing: 0.03em; }
    .about-stats { gap: 10px !important; }

    .hero { padding-top: 88px; min-height: 84vh; }
    .hero-tag { margin-bottom: 14px; font-size: 0.66rem !important; }
}

@media (max-width: 380px) {
    .stat-number { font-size: 1.45rem !important; }
    .stat-label { font-size: 0.54rem !important; }
    .filter-btn { padding: 11px 14px; font-size: 0.74rem; }
}

/* ============================================
   MOBILE PASS 3 — final polish
   - Hero typography compact
   - Hero image: kill ken-burns scale on mobile, better object-position
   - Genuine overflow root-cause containment
   - Slider vertical scroll pass-through (touch-action fix)
   - Collection title compact
   Desktop untouched.
   ============================================ */

@media (max-width: 768px) {
    /* --- Hero text compact --- */
    .hero-content {
        max-width: 88vw !important;
    }
    .hero-tag {
        font-size: 0.66rem !important;
        margin-bottom: 14px;
    }
    .hero-line {
        font-size: clamp(2.2rem, 9.5vw, 2.8rem) !important;
        line-height: 1.06;
    }
    .hero-line[data-i18n="hero.line2"] {
        font-size: clamp(1.9rem, 8.4vw, 2.5rem) !important;
    }
    .hero-desc {
        font-size: 0.96rem !important;
        line-height: 1.65;
        max-width: 88vw;
    }
    .hero-title { margin-bottom: 16px; }

    /* --- Hero image: kill ken-burns scale, better focal point --- */
    .hero-slide-bg {
        transform: none !important;
        background-size: cover !important;
        background-position: center 62% !important;
    }
    .hero-slide.active .hero-slide-bg {
        transform: none !important;
    }

    /* --- Horizontal overflow root containment --- */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative;
    }
    .hero {
        overflow: hidden;
        max-width: 100vw;
    }
    /* Marquee — keep animation contained, never escape root */
    .marquee-section {
        overflow: hidden !important;
        max-width: 100vw !important;
        width: 100vw;
    }
    .marquee-track {
        will-change: transform;
        max-width: none; /* track must be free to translateX, but parent clips */
    }
    /* Generic safety on all sections */
    section, footer, header, main { max-width: 100%; }
    /* But never on products-grid (it MUST scroll horizontally) */
    .products-grid { max-width: none; }

    /* --- Slider: don't lock vertical page scroll --- */
    .products-grid {
        touch-action: pan-x pan-y !important;
    }

    /* --- Collection section title compact --- */
    .collections .section-title br { display: none; }
    .collections .section-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
        line-height: 1.15;
    }
    .collections .section-title em {
        margin-left: 0.18em;
    }
}

@media (max-width: 480px) {
    .hero-tag { font-size: 0.62rem !important; }
    .hero-line { font-size: clamp(2rem, 9vw, 2.5rem) !important; }
    .hero-line[data-i18n="hero.line2"] { font-size: clamp(1.75rem, 8vw, 2.2rem) !important; }
    .hero-desc { font-size: 0.92rem !important; }
    .collections .section-title { font-size: clamp(1.55rem, 5.6vw, 1.95rem); }
}

/* ============================================
   MOBILE PASS 4 — overflow root cause + hero L position + title size
   ============================================ */

@media (max-width: 768px) {
    /* === ROOT CAUSE: negative-margin bleed-to-edge tricks === */
    /* products-grid base CSS has `margin: 0 -4px` — kill on mobile */
    .products-grid {
        margin: 0 !important;
        padding: 4px 0 12px !important;
    }
    /* collection-filter mobile pass 1 used margin -20/+20 padding trick — kill */
    .collection-filter {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        max-width: 100%;
    }
    /* products-arrow has left: -24px / right: -24px overhang — clip to container */
    .products-arrow { display: none !important; }
    .products-slider { overflow: hidden; }

    /* === Containment hardening — clip subpixel paint overflows === */
    html, body {
        overflow-x: clip;
        max-width: 100vw;
    }
    body { position: relative; }

    /* === Hero background — push subject into view (left) === */
    .hero-slide-bg {
        background-position: 40% 58% !important;
        transform: none !important;
        background-size: cover !important;
    }

    /* === Collection title — keep single line, slightly larger === */
    .collections .section-title {
        font-size: clamp(1.85rem, 6.4vw, 2.35rem);
        line-height: 1.15;
        letter-spacing: -0.005em;
    }
    .collections .section-title br { display: none; }
    .collections .section-title em { margin-left: 0.18em; }
}

@media (max-width: 480px) {
    .collections .section-title { font-size: clamp(1.78rem, 6.2vw, 2.05rem); }
}

@media (max-width: 380px) {
    .collections .section-title { font-size: 1.78rem; }
}

/* ============================================
   MOBILE PASS 5 — final overflow lockdown + hero subject fit
   ============================================ */

@media (max-width: 768px) {
    /* === Root containment — strongest possible === */
    html {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100%;
    }
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100%;
        position: relative;
        overscroll-behavior-x: none;
    }
    /* Direct body children must obey viewport */
    body > nav,
    body > main,
    body > footer,
    body > section,
    body > div:not(.lightbox):not(.cursor):not(.cursor-follower):not(.preloader):not(.mobile-menu) {
        max-width: 100% !important;
        overflow-x: clip;
    }

    /* === Hero — strict viewport lock === */
    .hero {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        height: auto;
        overflow: hidden;
    }
    .hero-slider, .hero-slide, .hero-slide-bg, .hero-slide-overlay, .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        left: auto;
        right: auto;
        transform: none;
    }
    .hero-slide-bg {
        background-size: cover !important;
        background-position: 30% 56% !important;
        transform: none !important;
    }

    /* === Hero content & text — within viewport === */
    .hero-content {
        padding: 0 20px !important;
        max-width: calc(100% - 40px) !important;
        margin: 0 20px;
        left: auto;
        right: auto;
        transform: none;
    }
    .hero-tag, .hero-title, .hero-desc {
        max-width: 100%;
        word-wrap: break-word;
    }

    /* === Marquee — root-clip === */
    .marquee-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        position: relative;
    }
    .marquee-track {
        will-change: transform;
        max-width: none;
        width: max-content;
    }

    /* === Section header & filters — within viewport === */
    .section-header, .collection-filter, .products-slider {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* === Products grid — only horizontal scroll allowed === */
    .products-grid {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        padding: 4px 0 12px !important;
    }

    /* === Container globally === */
    .container {
        max-width: 100% !important;
        width: 100%;
    }

    /* === Hero-tag tag-line — keep, but ensure no expansion === */
    .hero-tag .tag-line { flex-shrink: 0; }
}

/* ============================================
   MOBILE PASS 6 — NUCLEAR CONTAINMENT + HERO BALANCE
   Applies max-width: 100vw to every descendant of body.
   Slider explicitly exempted.
   ============================================ */

@media (max-width: 768px) {
    /* === NUCLEAR: every element constrained to viewport === */
    body * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    /* Exception: products-grid + its cards must overflow horizontally inside their parent */
    .products-grid,
    .products-grid * {
        max-width: none;
    }
    /* Exception: marquee track must be wider than viewport for animation */
    .marquee-track,
    .marquee-track * {
        max-width: none;
    }

    /* === Marquee — ensure section clips and contains paint === */
    .marquee-section {
        position: relative;
        overflow: hidden !important;
        contain: paint layout;
        width: 100%;
        max-width: 100vw;
    }
    .marquee-track {
        display: flex;
        width: max-content;
    }

    /* === Products slider — clip arrow overhangs, expose only horizontal scroll === */
    .products-slider {
        position: relative;
        overflow-x: hidden;
        max-width: 100%;
    }
    .products-grid {
        overflow-x: auto;
        overflow-y: hidden;
        max-width: 100%;
        width: 100%;
        touch-action: pan-x pan-y !important;
    }

    /* === Hero — balanced size + image === */
    .hero {
        height: 100svh;
        min-height: 660px;
        max-height: 100svh;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero-slide-bg {
        background-size: cover !important;
        background-position: 38% 55% !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
    }

    /* === Hero text — no overlap, breathing room === */
    .hero-content {
        padding: 0 20px !important;
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-tag {
        margin-bottom: 12px;
        font-size: 0.66rem;
    }
    .hero-title {
        margin-bottom: 14px;
    }
    .hero-line {
        font-size: clamp(2.1rem, 9vw, 2.6rem) !important;
        line-height: 0.98;
    }
    .hero-line[data-i18n="hero.line2"] {
        font-size: clamp(1.85rem, 8vw, 2.35rem) !important;
    }
    .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.5;
        max-width: 88%;
        margin-bottom: 0;
    }

    /* === Hero footer (scroll cue) — keep clear of marquee, no horizontal expansion === */
    .hero-footer { left: 20px !important; right: 20px !important; }
}

@media (max-width: 480px) {
    .hero { min-height: 600px; }
    .hero-line { font-size: clamp(1.95rem, 8.5vw, 2.4rem) !important; }
    .hero-line[data-i18n="hero.line2"] { font-size: clamp(1.75rem, 7.5vw, 2.15rem) !important; }
    .hero-desc { font-size: 0.92rem !important; max-width: 90%; }
}

/* ============================================
   MOBILE PASS 7 — hero-bg fine-tune + caption clipping fix
   ============================================ */

@media (max-width: 768px) {
    /* === Hero background — slightly zoomed-out, chair more centered === */
    .hero-slide-bg {
        background-size: auto 84% !important;
        background-position: 75% 100% !important;
        transform: none !important;
    }

    /* === Production Facility caption — show both lines fully === */
    .about-right,
    .about-image-wrapper,
    .about-image,
    .about-image-detail {
        overflow: visible !important;
    }
    .image-overlay-text {
        position: absolute !important;
        top: 100% !important;
        bottom: auto !important;
        left: 0 !important;
        right: auto !important;
        height: auto !important;
        min-height: 0 !important;
        max-width: 100% !important;
        width: auto !important;
        padding: 16px 22px !important;
        flex-shrink: 0;
        overflow: visible !important;
        contain: none !important;
    }
    .image-overlay-text span,
    .image-overlay-text span:first-child {
        overflow: visible !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }
    /* Push the lower detail photo below the caption frame */
    .about-image-small { margin-top: 88px !important; }
    /* === Stats — center on mobile === */
    .about-stats { align-items: center !important; text-align: center; }
    .about-stats .stat { width: auto !important; text-align: center; }
    .about-stats .stat-top { justify-content: center; }

    /* === Hero title — +2px on mobile === */
    .hero-line { font-size: calc(clamp(3.2rem, 7.4vw, 7rem) + 2px) !important; }
    .hero-line[data-i18n="hero.line2"] { font-size: calc(clamp(2.7rem, 6.5vw, 6rem) + 2px) !important; }

    /* === Hero title — slight nudge down === */
    .hero-title { transform: translateY(14px) !important; }
    .hero-desc.reveal-up { transform: translateY(20px) !important; }

    /* === Hero desc — hide desktop-only line break on mobile === */
    .hero-desc-break { display: none !important; }

    /* === Hide "Scroll to explore" on mobile === */
    .hero-scroll { display: none !important; }

    /* === Nav transition — instant on mobile, no half-second fade === */
    .nav { transition: background-color 0.15s ease, padding 0.15s ease, box-shadow 0.15s ease !important; }

    /* === Marquee — slow down on mobile === */
    .marquee-track { animation-duration: 120s !important; }
}

/* === Desktop-only tweaks === */
@media (min-width: 769px) {
    /* Hero content — pull up on desktop */
    .hero-content { transform: translateY(-60px); }

    /* Lang switch — nudge right on desktop */
    .lang-switch { transform: translateX(25px); }

    /* Hand Finishing step — show full burned-in caption (left-anchor crop) */
    .craft-step:nth-child(3) .step-image > img { object-position: left center; }
}
