/* ============================================================
   KYLE BUCKNER DESIGNS — "Digital Atelier"
   Color: Vivid Mint (#00E1C3) / Black / White
   Fonts: Playfair Display / Syne / IBM Plex Mono
   ============================================================ */

/* ── Custom Fonts ── */
@font-face {
    font-family: 'HypeBuzz';
    src: url('HypebuzzDemo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Network';
    src: url('Network%20Font%20Files/Network/Network.woff2') format('woff2'),
         url('Network%20Font%20Files/Network/Network.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NetworkScript';
    src: url('Network%20Font%20Files/NetworkScript/NetworkScript.woff2') format('woff2'),
         url('Network%20Font%20Files/NetworkScript/NetworkScript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NetworkAlt';
    src: url('Network%20Font%20Files/NetworkAlt/Network%20Alt.woff2') format('woff2'),
         url('Network%20Font%20Files/NetworkAlt/Network%20Alt.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NetworkSwashes';
    src: url('Network%20Font%20Files/NetworkSwashes/NetworkSwashes.woff2') format('woff2'),
         url('Network%20Font%20Files/NetworkSwashes/NetworkSwashes.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Variables ── */
:root {
    --mint: #00E1C3;
    --mint-dim: rgba(0, 225, 195, 0.15);
    --mint-glow: rgba(0, 225, 195, 0.25);
    --mint-dark: #00A892;
    --black: #0A0A0A;
    --surface: #111111;
    --card: #1A1A1A;
    --card-hover: #222222;
    --border: #2A2A2A;
    --white: #F5F5F5;
    --white-pure: #FFFFFF;
    --gray-100: #E0E0E0;
    --gray-200: #C0C0C0;
    --gray-300: #999999;
    --gray-400: #666666;
    --gray-500: #444444;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-network: 'Network', 'Playfair Display', cursive;
    --font-network-script: 'NetworkScript', 'Network', cursive;
    --font-network-alt: 'NetworkAlt', 'Network', cursive;
    --font-network-swash: 'NetworkSwashes', 'Network', cursive;
    --font-heading: 'Syne', 'Helvetica Neue', Helvetica, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --nav-height: 80px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
    scrollbar-color: var(--mint) var(--black);
}

html::-webkit-scrollbar {
    width: 6px;
}
html::-webkit-scrollbar-track {
    background: var(--black);
}
html::-webkit-scrollbar-thumb {
    background: var(--mint);
    border-radius: 3px;
}

body {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: default;
}

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

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

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

::selection {
    background: var(--mint);
    color: var(--black);
}

/* ── Custom Cursor ── */
.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--white-pure);
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease-out-expo),
                height 0.2s var(--ease-out-expo),
                background 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo),
                border-color 0.3s,
                background 0.3s;
}

body.cursor-hover .cursor {
    width: 12px;
    height: 12px;
    background: var(--mint);
}

body.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: var(--mint);
    background: var(--mint-dim);
}

@media (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ── Grain Overlay (disabled) ── */
.grain {
    display: none;
}

/* ── Cinematic Intro — Split Panel Reveal ── */
.intro {
    position: fixed;
    inset: 0;
    z-index: 10001;
}

.intro-panels {
    position: absolute;
    inset: 0;
    display: flex;
}

.intro-panel {
    flex: 1;
    background: var(--black);
}

.intro-panel-left {
    transform-origin: left center;
}

.intro-panel-right {
    transform-origin: right center;
}

.intro-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.intro-year,
.intro-location {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-300);
    opacity: 0;
}

.intro-divider {
    width: 40px;
    height: 1px;
    background: var(--mint);
    transform: scaleX(0);
}

/* ── Scroll Progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--mint);
    z-index: 9998;
    width: 0%;
    transition: none;
    box-shadow: 0 0 10px var(--mint-glow);
}

/* (old loader removed — replaced by cinematic intro) */

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 60px);
    z-index: 9990;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s;
    object-fit: contain;
    padding: 4px;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-200);
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--mint);
    transition: width 0.4s var(--ease-out-expo);
}

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

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

/* Nav Dropdown + Mega Menu */
.nav-dropdown {
    position: relative;
}

.nav-chevron {
    width: 10px;
    height: 10px;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 200px);
    gap: 32px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    padding: 32px;
}

.mega-menu-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    display: block;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: var(--gray-300);
}

.mega-menu-item:hover {
    color: var(--white);
}

.mega-menu-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.mega-menu-item span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
}

.mega-menu-cta-col {
    display: flex;
    flex-direction: column;
}

.mega-menu-cta-text {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.6rem;
}

/* Cart Icon */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--mint);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.nav-cart-count.has-items {
    display: flex;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9985;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

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

.mobile-menu-inner {
    text-align: center;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s, opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

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

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover {
    color: var(--mint);
}

.mobile-menu-footer {
    margin-top: 3rem;
    display: flex;
    gap: 24px;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s 0.35s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-footer a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.3s;
}

.mobile-menu-footer a:hover {
    color: var(--mint);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--nav-height) clamp(24px, 4vw, 60px) 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, var(--mint-dim) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 225, 195, 0.06) 0%, transparent 50%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: clamp(24px, 4vh, 48px);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 3.8s forwards;
}

.hero-eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--mint);
}

.hero-eyebrow-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-300);
}

/* ── Shutter Text Hero ── */
.hero-title {
    font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: clamp(24px, 4vh, 40px);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shutter-line {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    font-size: clamp(2rem, 6vw, 6rem);
}

.shutter-char {
    position: relative;
    display: inline-block;
    padding: 0 0.1vw;
    overflow: hidden;
}

/* Main visible character */
.shutter-char > .shutter-main {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    color: var(--white);
}

.shutter-char > .shutter-main.animate {
    animation: shutterFadeIn 0.8s ease-out forwards;
}

@keyframes shutterFadeIn {
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

/* Slice layers — these sweep across each character */
.shutter-slice {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.shutter-slice-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.shutter-slice-top {
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.shutter-slice-top .shutter-slice-inner {
    color: var(--mint);
}

.shutter-slice-mid {
    clip-path: polygon(0 35%, 100% 35%, 100% 65%, 0 65%);
}

.shutter-slice-mid .shutter-slice-inner {
    color: var(--gray-200);
}

.shutter-slice-bottom {
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

.shutter-slice-bottom .shutter-slice-inner {
    color: var(--mint);
}

/* Sweep animations */
.sweep-left {
    animation: sweepLeft 0.7s ease-in-out forwards;
}

.sweep-right {
    animation: sweepRight 0.7s ease-in-out forwards;
}

@keyframes sweepLeft {
    0%   { transform: translateX(-120%); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

@keyframes sweepRight {
    0%   { transform: translateX(120%); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(-120%); opacity: 0; }
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 4.2s forwards;
}

.hero-tagline-slash {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--mint);
    font-size: 1.2rem;
}

.hero-tagline-text {
    font-family: var(--font-mono);
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    letter-spacing: 0.25em;
    color: var(--gray-200);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 4.5s forwards;
}

.hero-scroll-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
}

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

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

/* Hero Corners — removed to avoid overlapping logo */

/* ── Marquee ── */
.marquee {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--surface);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gray-300);
    text-transform: uppercase;
}

.marquee-dot {
    color: var(--mint);
    font-size: 0.5rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Section Label ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(48px, 8vh, 100px);
}

.section-label-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--mint);
}

.section-label-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-label-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gray-400);
}

/* ── Heading Slash ── */
.heading-slash {
    font-family: var(--font-mono);
    color: var(--mint);
    font-weight: 600;
    margin-right: 8px;
}

/* ── Photo Breaks ── */
.photo-break {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.photo-break-short {
    height: 50vh;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 40%,
        rgba(10, 10, 10, 0.4) 100%
    );
    pointer-events: none;
}

.photo-break-caption {
    position: absolute;
    bottom: 32px;
    left: clamp(24px, 4vw, 60px);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ── Photo Grid (in-story) ── */
.photo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 4px;
    margin: clamp(48px, 8vh, 80px) clamp(24px, 4vw, 60px);
}

.photo-grid-item {
    overflow: hidden;
    position: relative;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.6s var(--ease-out-expo);
}

.photo-grid-item:hover img {
    transform: scale(1.04);
}

.photo-grid-wide img {
    aspect-ratio: 3 / 4;
}

@media (max-width: 768px) {
    .photo-break {
        height: 60vh;
    }

    .photo-break-short {
        height: 40vh;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .photo-grid-item img,
    .photo-grid-wide img {
        aspect-ratio: 16 / 9;
    }
}

/* ── About ── */
.about {
    padding: clamp(80px, 12vh, 160px) 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 100px);
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(80px, 12vh, 140px);
    align-items: start;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--gray-200);
    line-height: 1.8;
    max-width: 520px;
}

.about-lead em {
    color: var(--mint);
    font-style: italic;
    font-family: var(--font-display);
}

.about-story {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(80px, 10vh, 120px);
}

.story-chapter {
    background: var(--black);
    padding: clamp(32px, 4vw, 60px);
    position: relative;
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 2px solid transparent;
}

.story-chapter:hover {
    background: var(--surface);
    border-left-color: var(--mint);
}

.story-chapter::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 225, 195, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.story-chapter:hover::after {
    opacity: 1;
}

.story-chapter-num {
    font-family: var(--font-mono);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    letter-spacing: 0.2em;
    color: var(--mint);
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.story-chapter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.story-chapter-text {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.75;
}

/* ── Stats ── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 0 clamp(24px, 4vw, 60px);
    border: 1px solid var(--border);
}

.stat {
    background: var(--black);
    padding: clamp(32px, 4vw, 56px);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 225, 195, 0.15);
}

.stat-plus,
.stat-percent,
.stat-of {
    font-family: var(--font-mono);
    color: var(--mint);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 600;
}

.stat-of {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin: 0 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 12px;
}

/* ── Craft ── */
.craft {
    padding: clamp(80px, 12vh, 160px) 0;
    background: var(--surface);
}

.craft-hero {
    text-align: center;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(60px, 10vh, 120px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.craft-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.craft-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--gray-200);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.craft-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin: 0 clamp(24px, 4vw, 60px) clamp(60px, 10vh, 120px);
}

.craft-pillar {
    background: var(--surface);
    padding: clamp(32px, 3vw, 48px);
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.craft-pillar:hover {
    background: var(--card);
}

.craft-pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--mint);
}

.craft-pillar-icon svg {
    width: 100%;
    height: 100%;
}

.craft-pillar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.craft-pillar-text {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* Craft Quote */
.craft-quote {
    max-width: 800px;
    margin: 0 auto clamp(60px, 10vh, 120px);
    padding: 0 clamp(24px, 4vw, 60px);
    text-align: center;
}

.craft-quote blockquote {
    position: relative;
}

.craft-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--mint);
    line-height: 0.5;
    display: block;
    margin-bottom: 16px;
    opacity: 0.4;
}

.craft-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--gray-100);
}

.craft-quote em {
    color: var(--mint);
}

.craft-quote cite {
    display: block;
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    font-style: normal;
}

/* Craft Location */
.craft-location {
    text-align: center;
    padding: clamp(48px, 6vh, 80px) clamp(24px, 4vw, 60px);
    border-top: 1px solid var(--border);
    margin: 0 clamp(24px, 4vw, 60px);
}

.craft-location-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.craft-location-place {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    font-style: normal;
    margin-bottom: 16px;
}

.craft-location-desc {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Collections ── */
.collections {
    padding: clamp(80px, 12vh, 160px) 0;
}

.collections-header {
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(48px, 6vh, 80px);
}

.collections-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.collections-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--gray-300);
    max-width: 500px;
}

/* Category Filter */
.collections-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(40px, 6vh, 64px);
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--gray-300);
    color: var(--gray-200);
}

.filter-btn.active {
    border-color: var(--mint);
    color: var(--mint);
    background: var(--mint-dim);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(80px, 10vh, 120px);
}

.product-card {
    cursor: pointer;
    transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}

.product-card.hidden {
    display: none;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-image {
    border-color: var(--mint);
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 225, 195, 0.1);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 225, 195, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-card-cta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    padding: 12px 24px;
    border: 1px solid var(--mint);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-card-cta {
    background: var(--mint);
    color: var(--black);
}

.product-card-info {
    padding: 0 4px;
}

.product-card-collection {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--mint);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

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

.product-card-price {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gray-300);
}

/* ── Product Modal ── */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.product-modal-content {
    position: relative;
    width: 92vw;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--black);
    border: 1px solid var(--border);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--mint) var(--black);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
}

.product-modal.active .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--black);
    z-index: 10;
    transition: border-color 0.3s, color 0.3s;
}

.product-modal-close:hover {
    border-color: var(--mint);
    color: var(--mint);
}

.product-modal-close svg {
    width: 20px;
    height: 20px;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 500px;
}

.product-modal-gallery {
    padding: 40px;
    border-right: 1px solid var(--border);
}

.product-modal-hero-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    background: var(--surface);
}

.product-modal-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.product-modal-hero-img:hover img {
    transform: scale(1.1);
}

.product-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 8px;
}

.product-modal-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.3s;
    background: var(--surface);
}

.product-modal-thumb.active {
    border-color: var(--mint);
}

.product-modal-thumb:hover {
    border-color: var(--gray-300);
}

.product-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-collection {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
}

.product-modal-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-modal-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--gray-200);
}

.product-modal-desc {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* Swatch System */
.product-modal-swatches {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swatch-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.swatch-group-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.swatch-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.swatch {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.swatch::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: box-shadow 0.3s;
}

.swatch:hover {
    transform: scale(1.08);
    border-color: var(--gray-300);
}

.swatch.active {
    border-color: var(--mint);
    box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--mint);
    transform: scale(1.08);
}

.swatch.unavailable {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.swatch-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 5;
}

.swatch:hover .swatch-tooltip {
    opacity: 1;
}

/* Swatch textures */
.swatch-vivid-white {
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 50%, #F5F5F5 100%);
}
.swatch-matte-black {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #111111 100%);
}
.swatch-natural-wood {
    background: linear-gradient(135deg, #C4944A 0%, #A67B3D 30%, #D4A55A 60%, #B8883F 100%);
    background-size: 200% 200%;
}
.swatch-chipboard {
    background: linear-gradient(135deg, #C8B078 0%, #B49B5E 30%, #D4BC82 60%, #A88F55 100%);
    background-size: 200% 200%;
}
.swatch-matte-white {
    background: linear-gradient(135deg, #F0F0F0 0%, #DADADA 50%, #EEEEEE 100%);
}

.swatch-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
}

.swatch-selected-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.swatch-selected-value {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--mint);
}

.product-modal-video-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-modal-video-wrap video {
    width: 100%;
    max-height: 200px;
    border: 1px solid var(--border);
    background: var(--surface);
    outline: none;
}

.product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-modal-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-modal-detail-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.product-modal-detail-value {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gray-200);
}

.btn-modal-cta {
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.btn-modal-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-modal-cta:hover svg {
    transform: translateX(4px);
}

/* Custom Commissions */
.collections-custom {
    margin: 0 clamp(24px, 4vw, 60px);
}

.collections-custom-inner {
    padding: clamp(40px, 6vh, 80px) clamp(24px, 4vw, 60px);
    border-top: 1px solid var(--border);
    text-align: center;
}

.collections-custom-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    font-style: normal;
    margin-bottom: 16px;
}

.collections-custom-text {
    font-size: 0.95rem;
    color: var(--gray-300);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.btn-primary {
    background: var(--mint);
    color: var(--black);
    border: 1px solid var(--mint);
}

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

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

.btn-outline:hover {
    background: var(--mint);
    color: var(--black);
}

/* ── Press ── */
.press {
    padding: clamp(80px, 12vh, 160px) 0;
    background: var(--surface);
}

.press-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(80px, 10vh, 120px);
}

.press-logo {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.1em;
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    opacity: 0.4;
    position: relative;
}

.press-logo:hover {
    color: var(--mint);
    opacity: 1;
}

/* Separators between press logos */
.press-logo + .press-logo::before {
    content: '';
    position: absolute;
    left: calc(clamp(-12px, -2vw, -28px));
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--gray-500);
    opacity: 0.3;
}

/* Testimonials */
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--gray-100);
    margin-bottom: 32px;
    position: relative;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--mint);
    line-height: 0.5;
    display: block;
    margin-bottom: 20px;
    opacity: 0.35;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-style: normal;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.testimonial-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-500);
    transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-dot.active {
    background: var(--mint);
    transform: scale(1.3);
}

/* ── Expanding Gallery ── */
.expand-gallery-section {
    padding: clamp(40px, 6vh, 80px) clamp(24px, 4vw, 60px);
}

.expand-gallery {
    display: flex;
    align-items: center;
    gap: 6px;
    height: clamp(300px, 50vh, 500px);
    width: 100%;
}

.expand-gallery-item {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    min-width: 0;
}

.expand-gallery-item:hover {
    flex: 4;
}

.expand-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.expand-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .expand-gallery {
        height: clamp(200px, 35vh, 350px);
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .expand-gallery {
        flex-wrap: wrap;
        height: auto;
        gap: 4px;
    }
    .expand-gallery-item {
        flex: 1 1 calc(50% - 4px);
        height: 150px;
    }
    .expand-gallery-item:hover {
        flex: 1 1 calc(50% - 4px);
    }
}

/* ── Commission Section ── */
.commission {
    padding: clamp(80px, 12vh, 160px) 0;
}

.commission-header {
    text-align: center;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(48px, 8vh, 80px);
}

.commission-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.commission-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto;
}

.commission-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-bottom: clamp(60px, 8vh, 100px);
}

.commission-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 16px;
}

.commission-step-num {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--mint);
    display: block;
    margin-bottom: 16px;
}

.commission-step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--mint);
}

.commission-step-icon svg {
    width: 100%;
    height: 100%;
}

.commission-step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.commission-step-text {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.commission-step-line {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin-top: 60px;
    flex-shrink: 0;
}

.commission-cta {
    text-align: center;
    padding: clamp(40px, 6vh, 80px) clamp(24px, 4vw, 60px);
    border-top: 1px solid var(--border);
    margin: 0 clamp(24px, 4vw, 60px);
}

.commission-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    border: 1px solid var(--mint);
    padding: 8px 20px;
    margin-bottom: 16px;
}

.commission-lead-time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .commission-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .commission-step {
        max-width: 400px;
    }

    .commission-step-line {
        width: 1px;
        height: 32px;
        margin: 0;
    }
}

/* ── Contact ── */
.contact {
    padding: clamp(80px, 12vh, 160px) 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    padding: 0 clamp(24px, 4vw, 60px);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: clamp(32px, 4vh, 56px);
}

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

.contact-detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-100);
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

a.contact-detail-value:hover {
    color: var(--mint);
}

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

.contact-social-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    position: relative;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--mint);
    transition: width 0.4s var(--ease-out-expo);
}

.contact-social-link:hover {
    color: var(--mint);
}

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

/* Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    padding: 14px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 1px var(--mint-dim);
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--surface);
    color: var(--white);
}

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

.btn-submit {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 0 clamp(24px, 4vw, 60px);
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    padding: clamp(40px, 6vh, 80px) 0;
    border-bottom: 1px solid var(--border);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.85;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-top: 8px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.footer-col a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gray-400);
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-col a:hover {
    color: var(--mint);
}

.footer-nav {
    display: flex;
    gap: clamp(16px, 2vw, 32px);
}

.footer-nav a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-nav a:hover {
    color: var(--mint);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-copy,
.footer-location {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

/* ── GSAP Reveal States ── */
/* Elements start invisible — GSAP animates them in on scroll */
[data-reveal-block] {
    opacity: 0;
    transform: translateY(40px);
}

/* Split text characters start below clip mask */
[data-split] {
    overflow: hidden;
}

/* Photo break images start clipped */
.photo-break img {
    clip-path: inset(10% 0% 10% 0%);
}

/* Product cards stagger in */
.product-card {
    opacity: 0;
    transform: translateY(50px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px;
    }

    .product-modal-info {
        padding: 24px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero-title-line {
        font-size: clamp(3rem, 14vw, 6rem);
    }

    .hero-title-accent {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

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

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }

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

    .form-group-full {
        grid-column: 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .press-logos {
        gap: 20px;
    }

    .product-modal-content {
        width: 96vw;
        max-height: 95vh;
    }

    .product-modal-gallery {
        padding: 16px;
    }

    .product-modal-info {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .hero-tagline {
        flex-direction: column;
        gap: 8px;
    }

    .hero-tagline-text {
        font-size: 0.55rem;
    }

    .contact-social {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .collections-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.6rem;
    }
}
