/* ════════════════════════════════════════════════════════════
   MEHMET AKSOY — Wholesale Footwear House, Istanbul
   Light elegant design · "The Golden Thread" signature
   ════════════════════════════════════════════════════════════ */

:root {
    --ivory:      #F5F0E6;
    --porcelain:  #FBF8F2;
    --paper:      #F9F5EC;
    --ink:        #221B13;
    --cocoa:      #4E3B28;
    --cognac:     #8B5A2B;
    --gold:       #B9893F;
    --champagne:  #C6A15B;
    --gold-soft:  #D9BE8C;
    --line:       rgba(78, 59, 40, .18);
    --line-soft:  rgba(78, 59, 40, .10);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', 'Segoe UI', sans-serif;

    --ease: cubic-bezier(.6, .01, .17, 1);
    --rail-w: 46px;
}

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

html { scroll-behavior: auto; }

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.75;
    color: var(--cocoa);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before { /* fine grain for a tactile paper feel */
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3000;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--champagne); color: #fff; }

/* ── Typography ─────────────────────────────────────────── */
.h1, .h2, .h3, .hero-title, .grand-quote p {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.12;
}
.h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: .01em; }
.h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.kicker {
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}
.kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 9px);
}
.kicker.light { color: var(--gold-soft); }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::after {
    content: '';
    width: 34px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 9px);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 5vw; }

.section { padding: clamp(4.5rem, 9vh, 7.5rem) 0; position: relative; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: 3.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { margin-top: 1rem; }

.light { color: #fff !important; }

/* ── Golden stitch divider (signature element) ──────────── */
.stitch-divider {
    width: 190px;
    height: 12px;
    margin: 1.6rem 0 1.8rem;
    position: relative;
}
.stitch-divider.center { margin-left: auto; margin-right: auto; }
.stitch-divider svg { width: 100%; height: 100%; overflow: visible; }
.stitch-divider path {
    fill: none;
    stroke: var(--champagne);
    stroke-width: 2;
    stroke-dasharray: 7 6;
    stroke-dashoffset: 400;
}
.stitch-divider .stitch-needle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 0 4px rgba(185, 137, 63, .18);
}

/* ── Thread progress rail (fixed, right side) ───────────── */
.thread-rail {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--rail-w);
    height: 100vh;
    z-index: 900;
    pointer-events: none;
}
.thread-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    border-left: 1px dashed rgba(78, 59, 40, .25);
}
.thread-fill {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 0;
    margin-left: -1px;
    background: linear-gradient(180deg, var(--champagne), var(--gold));
    box-shadow: 0 0 8px rgba(198, 161, 91, .55);
}
.thread-needle {
    position: absolute;
    left: 50%;
    top: 0;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -8px);
    color: var(--gold);
}
.thread-needle svg { width: 100%; height: 100%; fill: currentColor; filter: drop-shadow(0 1px 2px rgba(34, 27, 19, .3)); }

/* ── Custom cursor ──────────────────────────────────────── */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 4000;
}
.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px dashed var(--gold);
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
    animation: cursorSpin 14s linear infinite;
}
@keyframes cursorSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
body.cursor-hover .cursor-ring { width: 58px; height: 58px; border-color: var(--cognac); }
@media (hover: none), (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-mono { width: 96px; height: 96px; }
.preloader-mono .mono-ring {
    fill: none;
    stroke: var(--champagne);
    stroke-width: 1.5;
    stroke-dasharray: 6 7;
    animation: monoSpin 3.2s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes monoSpin { to { transform: rotate(360deg); } }
.preloader-mono .mono-text {
    font-family: var(--serif);
    font-size: 34px;
    fill: var(--ink);
    text-anchor: middle;
    letter-spacing: 2px;
}
.preloader-line {
    width: 170px;
    height: 2px;
    background: var(--line-soft);
    margin: 1.4rem auto .9rem;
    overflow: hidden;
}
.preloader-line span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gold);
    animation: loadSlide 1.1s var(--ease) infinite;
}
@keyframes loadSlide { from { transform: translateX(-110%); } to { transform: translateX(430%); } }
.preloader-label { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cognac); }

/* ── Page transition curtain ────────────────────────────── */
.curtain { position: fixed; inset: 0; z-index: 4500; pointer-events: none; visibility: hidden; }
.curtain.active { visibility: visible; }
.curtain-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50.5%;
    background: linear-gradient(160deg, #2A2118, #1C1610);
    transform: scaleY(0);
}
.curtain-top { top: 0; transform-origin: top; border-bottom: 1px solid rgba(198, 161, 91, .4); }
.curtain-bottom { bottom: 0; transform-origin: bottom; }
.curtain-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
}
.curtain-mono {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--champagne);
    letter-spacing: .18em;
    display: block;
}
.curtain-stitchline {
    display: block;
    width: 120px;
    height: 1px;
    margin: .5rem auto 0;
    background: repeating-linear-gradient(90deg, var(--champagne) 0 6px, transparent 6px 11px);
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .45s, box-shadow .45s, transform .45s var(--ease);
    background: linear-gradient(180deg, rgba(245, 240, 230, .92), rgba(245, 240, 230, 0));
}
.site-header.scrolled {
    background: rgba(251, 248, 242, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line-soft), 0 12px 34px -18px rgba(34, 27, 19, .25);
}
.site-header.hidden { transform: translateY(-110%); }
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.05rem 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.header-stitch {
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--champagne) 0 7px, transparent 7px 13px);
    opacity: 0;
    transition: opacity .45s;
}
.site-header.scrolled .header-stitch { opacity: .55; }

.brand { display: flex; align-items: center; gap: .85rem; }
.brand-mono {
    width: 46px;
    height: 46px;
    border: 1px solid var(--cognac);
    outline: 1px dashed rgba(139, 90, 43, .5);
    outline-offset: 3px;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .08em;
    background: var(--porcelain);
    transition: background .35s, color .35s;
}
.brand:hover .brand-mono { background: var(--ink); color: var(--champagne); }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name em {
    font-family: var(--serif);
    font-style: normal;
    font-size: 1.34rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .03em;
}
.brand-name small {
    font-size: .62rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: .15rem;
}

.main-nav ul { display: flex; gap: 2.1rem; }
.main-nav a {
    white-space: nowrap;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cocoa);
    padding: .4rem 0;
    position: relative;
    transition: color .3s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 9px);
    transition: right .45s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.header-right { display: flex; align-items: center; gap: 1.4rem; }
.lang-switch { display: flex; align-items: center; gap: .55rem; }
.lang-switch button {
    font-size: .78rem;
    letter-spacing: .16em;
    color: var(--cocoa);
    opacity: .55;
    transition: opacity .3s, color .3s;
    padding: .2rem .1rem;
}
.lang-switch button.active { opacity: 1; color: var(--gold); border-bottom: 1px solid var(--gold); }
.lang-switch button:hover { opacity: 1; }
.lang-sep { width: 1px; height: 14px; background: var(--line); }

.burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; z-index: 1102; }
.burger span { width: 26px; height: 1.6px; background: var(--ink); transition: transform .4s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--porcelain);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    clip-path: circle(0% at calc(100% - 3rem) 2.4rem);
    transition: clip-path .7s var(--ease);
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 3rem) 2.4rem); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.mobile-menu nav a {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: var(--ink);
    letter-spacing: .04em;
}
.mobile-menu nav a.active { color: var(--gold); }
.mobile-menu-foot { display: flex; flex-direction: column; align-items: center; gap: .4rem; font-size: .95rem; color: var(--cognac); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    padding: 1.05rem 2.4rem;
    position: relative;
    transition: color .4s, background .4s, box-shadow .4s;
    text-align: center;
}
.btn-solid {
    background: var(--ink);
    color: var(--porcelain);
    box-shadow: 0 14px 30px -14px rgba(34, 27, 19, .55);
}
.btn-solid::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px dashed rgba(198, 161, 91, .55);
    transition: inset .35s var(--ease);
}
.btn-solid:hover { background: var(--cognac); }
.btn-solid:hover::after { inset: 8px; }

.btn-stitch {
    color: var(--ink);
    border: 1px solid var(--cognac);
    background: transparent;
}
.btn-stitch::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(139, 90, 43, .5);
    transition: inset .35s var(--ease), border-color .35s;
}
.btn-stitch:hover { background: var(--ink); color: var(--champagne); border-color: var(--ink); }
.btn-stitch:hover::after { inset: 7px; border-color: rgba(198, 161, 91, .6); }

.btn-gold {
    background: linear-gradient(120deg, var(--champagne), var(--gold));
    color: #241B10;
    box-shadow: 0 16px 34px -14px rgba(185, 137, 63, .65);
}
.btn-gold::after { content: ''; position: absolute; inset: 5px; border: 1px dashed rgba(36, 27, 16, .4); }
.btn-gold:hover { filter: brightness(1.07); }

.btn-small { padding: .68rem 1.5rem; font-size: .7rem; white-space: nowrap; }

.center-btn { text-align: center; margin-top: 3rem; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.4rem;
    font-size: .82rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px dashed rgba(185, 137, 63, .6);
    padding-bottom: .35rem;
}
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover span { transform: translateX(7px); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 24% 45%, rgba(245, 240, 230, .94) 0%, rgba(245, 240, 230, .55) 55%, rgba(245, 240, 230, 0) 100%),
        linear-gradient(180deg, rgba(245, 240, 230, .25), rgba(245, 240, 230, 0) 35%, rgba(245, 240, 230, .9) 96%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 1240px; width: 100%; }
.hero-kicker { margin-bottom: 1.6rem; }
.hero-title {
    font-size: clamp(3rem, 7.6vw, 6.6rem);
    font-weight: 500;
    letter-spacing: .005em;
    margin-bottom: 1rem;
}
.ht-line { display: block; overflow: hidden; padding-bottom: .08em; }
.ht-word { display: inline-block; }
.ht-accent { font-style: italic; color: var(--cognac); }
.hero-stitch-under {
    width: 230px;
    height: 1px;
    margin: .6rem 0 1.7rem;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px);
}
.hero-sub { max-width: 560px; font-size: 1.06rem; margin-bottom: 2.6rem; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 5vw;
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .68rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--cognac);
    z-index: 2;
}
.hero-scroll-line {
    display: block;
    width: 74px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--cognac) 0 5px, transparent 5px 10px);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 100%;
    background: var(--gold);
    animation: scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint { from { transform: translateX(-30px); } to { transform: translateX(90px); } }

/* ── Marquee ────────────────────────────────────────────── */
.marquee-strip {
    background: var(--ink);
    padding: 1.05rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-strip::before, .marquee-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(198, 161, 91, .8) 0 7px, transparent 7px 13px);
}
.marquee-strip::before { top: 4px; }
.marquee-strip::after { bottom: 4px; }
.marquee { display: flex; overflow: hidden; }
.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    padding-right: 2.6rem;
    white-space: nowrap;
    animation: marquee 34s linear infinite;
    flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.mq-item {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-style: italic;
    color: var(--ivory);
    letter-spacing: .1em;
}
.mq-dot { color: var(--champagne); font-size: .68rem; }

/* ── Split layout & framed images ───────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}
.split-media { position: relative; }
.framed-img {
    position: relative;
    overflow: hidden;
    background: var(--porcelain);
    box-shadow: 0 30px 60px -30px rgba(34, 27, 19, .4);
}
.framed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transform: scale(1.08);
    transition: transform 1.2s var(--ease);
}
.framed-img:hover img { transform: scale(1.02); }
.framed-img figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(34, 27, 19, .82);
    color: var(--ivory);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .6rem 1.2rem;
}
.frame-stitch {
    position: absolute;
    inset: -14px 14px 14px -14px;
    border: 1px dashed var(--champagne);
    z-index: -1;
    pointer-events: none;
}
.framed-offset {
    position: absolute !important;
    width: 52%;
    right: -8%;
    bottom: -12%;
    border: 6px solid var(--ivory);
    display: none;
}
.framed-offset img { aspect-ratio: 1 / 1; }
@media (min-width: 1000px) { .framed-offset { display: block; } }

/* ── Stats ──────────────────────────────────────────────── */
.section-stats { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat { position: relative; padding: 1.4rem 1rem; }
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    bottom: 20%;
    border-right: 1px dashed var(--line);
}
.stat-n {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--ink);
    line-height: 1;
    display: block;
}
.stat-n i { font-style: normal; }
.stat-l {
    display: block;
    margin-top: .6rem;
    font-size: .74rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Collections preview cards ──────────────────────────── */
.coll-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
.coll-card {
    background: var(--porcelain);
    border: 1px solid var(--line-soft);
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s;
    overflow: hidden;
}
.coll-card:hover { transform: translateY(-8px); box-shadow: 0 34px 56px -30px rgba(34, 27, 19, .38); }
.coll-img { overflow: hidden; aspect-ratio: 4 / 4.6; }
.coll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.coll-card:hover .coll-img img { transform: scale(1.07); }
.coll-body { padding: 1.4rem 1.5rem 1.7rem; position: relative; }
.coll-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--champagne) 0 6px, transparent 6px 11px);
}
.coll-body h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: .35rem; }
.coll-body p { font-size: .9rem; line-height: 1.55; }
.coll-more {
    position: absolute;
    right: 1.4rem;
    bottom: 1.3rem;
    color: var(--gold);
    font-size: 1.15rem;
    transition: transform .35s var(--ease);
}
.coll-card:hover .coll-more { transform: translateX(6px); }

/* ── Banner (parallax) ──────────────────────────────────── */
.banner {
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 15vh, 10rem) 0;
    color: #fff;
}
.banner-tall { padding: clamp(7rem, 20vh, 13rem) 0; }
.banner-bg {
    position: absolute;
    inset: -22% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(24, 18, 11, .88) 8%, rgba(24, 18, 11, .55) 55%, rgba(24, 18, 11, .35));
}
.banner-inner { position: relative; z-index: 2; max-width: 1240px; }
.banner-text { max-width: 540px; margin: 1.2rem 0 2.2rem; color: rgba(245, 240, 230, .88); font-size: 1.05rem; }
.banner .h2 { max-width: 640px; }

/* ── Craft cards ────────────────────────────────────────── */
.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.craft-card {
    background: var(--porcelain);
    border: 1px solid var(--line-soft);
    padding: 2.6rem 2.2rem;
    text-align: center;
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s;
}
.craft-card::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed transparent;
    transition: border-color .5s;
    pointer-events: none;
}
.craft-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(34, 27, 19, .35); }
.craft-card:hover::after { border-color: rgba(198, 161, 91, .55); }
.craft-ico { width: 62px; height: 62px; margin: 0 auto 1.4rem; color: var(--gold); }
.craft-ico svg { width: 100%; height: 100%; }
.craft-card h3 { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); margin-bottom: .7rem; }
.craft-card p { font-size: .95rem; }

/* ── Quote ──────────────────────────────────────────────── */
.section-quote { padding-top: 3rem; }
.grand-quote {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 3rem 1rem 0;
}
.gq-mark {
    font-family: var(--serif);
    font-size: 7rem;
    line-height: 0;
    color: var(--champagne);
    display: block;
    margin-bottom: 2.4rem;
}
.grand-quote p { font-size: clamp(1.6rem, 3vw, 2.4rem); font-style: italic; font-weight: 500; }
.grand-quote cite {
    display: block;
    margin-top: 1.6rem;
    font-style: normal;
    font-size: .8rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── CTA box ────────────────────────────────────────────── */
.cta-box {
    background: var(--ink);
    color: rgba(245, 240, 230, .8);
    text-align: center;
    padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.8rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: 'MA';
    position: absolute;
    right: -1.5rem;
    bottom: -3.5rem;
    font-family: var(--serif);
    font-size: 15rem;
    color: rgba(198, 161, 91, .07);
    line-height: 1;
    pointer-events: none;
}
.cta-stitch-frame {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(198, 161, 91, .4);
    pointer-events: none;
}
.cta-box .h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-box p { max-width: 560px; margin: 0 auto 2.2rem; }
.cta-box .btn-solid { background: var(--champagne); color: #241B10; box-shadow: none; }
.cta-box .btn-solid::after { border-color: rgba(36, 27, 16, .4); }
.cta-box .btn-solid:hover { background: var(--gold-soft); }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
    padding: clamp(9rem, 18vh, 12rem) 0 clamp(2.5rem, 6vh, 4rem);
    position: relative;
    background:
        radial-gradient(ellipse 60% 90% at 80% -10%, rgba(198, 161, 91, .14), transparent 60%),
        var(--ivory);
}
.page-hero-sub { max-width: 640px; font-size: 1.06rem; }

/* ── Timeline (about) ───────────────────────────────────── */
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding: 1rem 0; }
.timeline-thread {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px dashed rgba(139, 90, 43, .45);
}
.tl-item { position: relative; width: 50%; padding: 1.4rem 3rem 1.4rem 0; text-align: right; }
.tl-item.tl-right { margin-left: 50%; padding: 1.4rem 0 1.4rem 3rem; text-align: left; }
.tl-knot {
    position: absolute;
    top: 2.1rem;
    right: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px var(--ivory), 0 0 0 6px rgba(185, 137, 63, .5);
    z-index: 2;
}
.section-alt .tl-knot { box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px rgba(185, 137, 63, .5); }
.tl-item.tl-right .tl-knot { right: auto; left: -6px; }
.tl-year {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: .3rem;
}
.tl-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: .3rem; }
.tl-card p { font-size: .95rem; }

/* ── Values ─────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
.value-card {
    border: 1px solid var(--line-soft);
    background: var(--porcelain);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(34, 27, 19, .35); }
.value-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.6rem;
    color: rgba(185, 137, 63, .35);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.value-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: .5rem; }
.value-card p { font-size: .92rem; }

/* ── Collections page: filters & catalog ────────────────── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.8rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed var(--line);
}
.ftab {
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cocoa);
    opacity: .6;
    padding: .5rem .2rem;
    position: relative;
    transition: opacity .3s, color .3s;
}
.ftab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1.25rem;
    height: 2px;
    background: var(--gold);
    transition: right .4s var(--ease);
}
.ftab:hover { opacity: 1; }
.ftab.active { opacity: 1; color: var(--gold); }
.ftab.active::after { right: 0; }

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.cat-item {
    background: var(--porcelain);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s, opacity .45s, scale .45s;
}
.cat-item.filtered-out { display: none; }
.cat-item:hover { transform: translateY(-7px); box-shadow: 0 32px 54px -30px rgba(34, 27, 19, .4); }
.cat-img { position: relative; overflow: hidden; aspect-ratio: 4 / 3.4; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-item:hover .cat-img img { transform: scale(1.08); }
.cat-badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    background: rgba(34, 27, 19, .85);
    color: var(--champagne);
    font-size: .62rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    padding: .4rem .8rem;
}
.cat-body { padding: 1.3rem 1.5rem 1.6rem; }
.cat-body h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: .3rem; }
.cat-body p { font-size: .88rem; color: var(--cognac); letter-spacing: .04em; }
.cat-stitch {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: .8rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(198, 161, 91, .7) 0 6px, transparent 6px 11px);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}
.cat-item:hover .cat-stitch { transform: scaleX(1); }

/* ── Craftsmanship process ──────────────────────────────── */
.process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    padding: 3rem 0;
}
.process-row + .process-row { border-top: 1px dashed var(--line-soft); }
.process-row.flip .process-media { order: 2; }
.process-media .framed-img img { aspect-ratio: 5 / 4; }
.process-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 4.4rem;
    line-height: 1;
    color: rgba(185, 137, 63, .3);
    display: block;
    margin-bottom: .6rem;
}
.process-body p { max-width: 480px; }

/* ── Wholesale: photo strip ─────────────────────────────── */
.photo-strip {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 10px;
    padding: 0 10px;
}
.ps-item { overflow: hidden; height: clamp(220px, 34vh, 380px); }
.ps-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ps-item:hover img { transform: scale(1.06); }

/* ── Wholesale: benefits ────────────────────────────────── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.benefit-card {
    background: var(--porcelain);
    border: 1px solid var(--line-soft);
    padding: 2.4rem 2rem 2.8rem;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(34, 27, 19, .35); }
.benefit-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.4rem;
    color: rgba(185, 137, 63, .38);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}
.benefit-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: .5rem; }
.benefit-card p { font-size: .93rem; }
.benefit-stitch {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 1.2rem;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(198, 161, 91, .7) 0 6px, transparent 6px 11px);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease);
}
.benefit-card:hover .benefit-stitch { transform: scaleX(1); }

/* ── Wholesale: steps ───────────────────────────────────── */
.steps-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.6rem;
    position: relative;
    padding-top: 1.4rem;
}
.steps-thread {
    position: absolute;
    top: calc(1.4rem + 21px);
    left: 4%;
    right: 4%;
    border-top: 1px dashed rgba(139, 90, 43, .45);
}
.step { text-align: center; position: relative; padding: 0 .4rem; }
.step-knot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ivory);
    border: 1px solid var(--gold);
    outline: 1px dashed rgba(185, 137, 63, .5);
    outline-offset: 4px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gold);
    position: relative;
    z-index: 2;
}
.section-alt .step-knot { background: var(--paper); }
.step h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: .4rem; }
.step p { font-size: .88rem; line-height: 1.6; }

/* ── Wholesale: terms ───────────────────────────────────── */
.terms-list { margin-top: .6rem; }
.term-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.05rem 0;
    border-bottom: 1px dashed var(--line);
}
.term-row dt { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cognac); }
.term-row dd { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); text-align: right; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}
.contact-card {
    background: var(--porcelain);
    border: 1px solid var(--line-soft);
    padding: 2.4rem 1.9rem;
    text-align: center;
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s;
}
.contact-card::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed transparent;
    transition: border-color .5s;
    pointer-events: none;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(34, 27, 19, .35); }
.contact-card:hover::after { border-color: rgba(198, 161, 91, .55); }
.cc-ico { width: 52px; height: 52px; margin: 0 auto 1.2rem; color: var(--gold); }
.cc-ico svg { width: 100%; height: 100%; }
.contact-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: .6rem; }
.contact-card p, .contact-card a { font-size: .95rem; line-height: 1.7; }
.contact-card a:hover { color: var(--gold); }

.map-frame {
    position: relative;
    box-shadow: 0 36px 70px -34px rgba(34, 27, 19, .45);
    background: var(--porcelain);
    padding: 10px;
}
.map-stitch-frame {
    position: absolute;
    inset: -13px;
    border: 1px dashed var(--champagne);
    pointer-events: none;
}
.map-frame iframe { display: block; filter: sepia(.22) saturate(.85); }
.map-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--cognac);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(245, 240, 230, .72); position: relative; }
.footer-stitch {
    height: 5px;
    background:
        repeating-linear-gradient(90deg, var(--champagne) 0 8px, transparent 8px 15px) center / 100% 1px no-repeat,
        linear-gradient(180deg, var(--gold), var(--cognac)) center top / 100% 0 no-repeat;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 4.5rem 5vw 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
}
.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-brand .brand-mono { background: transparent; color: var(--champagne); border-color: rgba(198, 161, 91, .6); outline-color: rgba(198, 161, 91, .35); }
.footer-brand .brand-name em { color: var(--ivory); }
.footer-brand p { font-size: .92rem; line-height: 1.8; }
.site-footer h4 {
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1.4rem;
}
.footer-nav li { margin-bottom: .55rem; }
.footer-nav a { font-size: .95rem; transition: color .3s, padding-left .3s; }
.footer-nav a:hover { color: var(--champagne); padding-left: 6px; }
.footer-contact li { display: flex; gap: .8rem; margin-bottom: .9rem; font-size: .95rem; align-items: baseline; }
.fc-ico { color: var(--champagne); }
.footer-contact a:hover { color: var(--champagne); }
.footer-hours { font-size: .95rem; }
.footer-seal { width: 74px; margin-top: 1.6rem; color: rgba(198, 161, 91, .5); }
.footer-seal svg { width: 100%; }
.seal-text { font-family: var(--serif); font-size: 26px; fill: currentColor; letter-spacing: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(245, 240, 230, .08);
    padding: 1.4rem 5vw;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: .8rem;
    letter-spacing: .06em;
}
.footer-made { display: flex; align-items: center; gap: .6rem; }
.made-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 8px var(--champagne); }

/* ── Reveal & anim primitives ───────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(34px); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ── Image fallback placeholder ─────────────────────────── */
img.img-fallback { object-fit: cover; background: linear-gradient(140deg, #E8DFCE, #D9C9A8); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .main-nav { display: none; }
    .header-cta { display: none; }
    .burger { display: flex; }
    .coll-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-line { grid-template-columns: repeat(3, 1fr); row-gap: 2.6rem; }
    .steps-thread { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.6rem; }
    .stat:nth-child(2)::after { display: none; }
}

@media (max-width: 760px) {
    :root { --rail-w: 26px; }
    body { font-size: 16px; }
    .split { grid-template-columns: 1fr; }
    .split .split-media { order: -1; }
    .process-row { grid-template-columns: 1fr; gap: 1.8rem; }
    .process-row.flip .process-media { order: 0; }
    .craft-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .coll-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .steps-line { grid-template-columns: 1fr; }
    .photo-strip { grid-template-columns: 1fr; }
    .ps-wide { order: -1; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.4rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .timeline-thread { left: 8px; }
    .tl-item, .tl-item.tl-right { width: 100%; margin-left: 0; padding: 1.2rem 0 1.2rem 2.4rem; text-align: left; }
    .tl-knot, .tl-item.tl-right .tl-knot { left: 2.5px; right: auto; }
    .term-row dd { font-size: 1.15rem; }
    .hero-scroll { display: none; }
    .brand-name small { display: none; }
}
