/* =========================================================
   MARLOR & CO. — 国际体育用品研发供应商
   Theme: Vintage Catalog / Sports Trading House
   Palette: ivory + brick red + forest + ink + saffron
   Layout: Left vertical rail + main scrolling content
   ========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --ivory: #f3eddc;
    --ivory-2: #ebe3cd;
    --paper: #fffaf0;
    --ink: #1a1a1a;
    --ink-2: #2c2a26;
    --line: #d9cea9;
    --line-2: #c2b687;
    --brick: #b73e2c;
    --brick-2: #8e2c1d;
    --forest: #284035;
    --forest-2: #1f3329;
    --saffron: #d49a2a;
    --muted: #6f6a5a;
    --tape: #e1d6a8;
}
html, body { background: var(--ivory); color: var(--ink); }
body {
    font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, sans-serif;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
.serif { font-family: "Playfair Display", "Cormorant Garamond", "Georgia", "Songti SC", "STSong", serif; }
.mono { font-family: "Courier New", "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace; letter-spacing: .06em; }

/* ---------- App layout ---------- */
.app {
    min-height: 100vh;
    display: block;
}
@media (min-width: 1100px) {
    .app {
        display: grid;
        grid-template-columns: 260px 1fr;
    }
}

/* ---------- Left rail (sidebar) ---------- */
aside.rail {
    background: var(--ink);
    color: var(--ivory);
    padding: 28px 24px;
    border-right: 4px solid var(--brick);
    position: relative;
}
@media (min-width: 1100px) {
    aside.rail {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
}
aside.rail::before {
    content: "";
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 4px;
    background: repeating-linear-gradient(180deg, var(--saffron) 0 6px, transparent 6px 12px);
    opacity: .35;
}
.r-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.r-mark {
    width: 56px; height: 56px;
    border: 2px solid var(--ivory);
    color: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}
.r-mark::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px dashed var(--ivory);
    opacity: .4;
}
.r-brand-text { line-height: 1.2; }
.r-brand-text strong {
    color: var(--ivory);
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 16px;
    letter-spacing: .03em;
    display: block;
}
.r-brand-text small {
    font-family: "Courier New", monospace;
    color: var(--saffron);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
.r-tag {
    background: var(--brick);
    color: var(--ivory);
    padding: 4px 10px;
    display: inline-block;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    transform: rotate(-1.5deg);
}
.r-tag i {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--ivory);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.r-nav { list-style: none; margin-bottom: 30px; }
.r-nav li { border-bottom: 1px dashed rgba(243,237,220,.18); }
.r-nav li:last-child { border-bottom: none; }
.r-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    font-size: 14.5px;
    color: var(--ivory);
    font-weight: 600;
    letter-spacing: .02em;
}
.r-nav a:hover { color: var(--saffron); }
.r-nav a .num {
    font-family: "Courier New", monospace;
    color: var(--muted);
    font-size: 11px;
}
.r-nav a.on { color: var(--saffron); }
.r-nav a.on .num { color: var(--brick); }
.r-foot {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px dashed rgba(243,237,220,.18);
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: #888376;
    line-height: 1.9;
    letter-spacing: .04em;
}
.r-foot strong { color: var(--saffron); display: block; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 6px; }

/* Mobile rail (becomes horizontal) */
@media (max-width: 1099px){
    aside.rail {
        padding: 18px 18px;
        height: auto;
        position: static;
    }
    .r-brand { margin-bottom: 18px; }
    .r-tag { display: none; }
    .r-nav {
        display: none;
        flex-direction: column;
        margin-bottom: 12px;
    }
    .r-nav.open { display: flex; }
    .r-foot { display: none; }
    .rail .mob-toggle {
        display: inline-block;
        padding: 6px 14px;
        border: 1px solid var(--ivory);
        color: var(--ivory);
        font-family: "Courier New", monospace;
        font-size: 12px;
        letter-spacing: .22em;
        background: transparent;
        cursor: pointer;
        text-transform: uppercase;
    }
}
@media (min-width: 1100px){
    .rail .mob-toggle { display: none; }
}

/* ---------- Main wrap ---------- */
main.flow { min-width: 0; }
.inner { max-width: 1100px; padding: 0 32px; margin: 0 auto; }
@media (max-width: 720px){ .inner { padding: 0 20px; } }

/* ---------- Top ribbon ---------- */
.ribbon {
    background: var(--brick);
    color: var(--ivory);
    padding: 10px 0;
    overflow: hidden;
}
.ribbon .row {
    display: flex;
    gap: 36px;
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ribbon .row span { display: inline-flex; align-items: center; gap: 8px; }
.ribbon .row b { color: var(--saffron); font-weight: 700; }
.ribbon .row i {
    width: 5px; height: 5px; background: var(--ivory); border-radius: 50%;
    display: inline-block;
}

/* ---------- Hero (asymmetric) ---------- */
.hero {
    padding: 70px 0 90px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero .stamp {
    display: inline-block;
    border: 2px solid var(--ink);
    padding: 8px 14px;
    margin-bottom: 22px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    background: var(--paper);
}
.hero .stamp b { color: var(--brick); font-weight: 700; }
.hero h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Songti SC", serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 24px;
}
.hero h1 em {
    color: var(--brick);
    font-style: italic;
    font-weight: 700;
}
.hero h1 .ul {
    background-image: linear-gradient(transparent 65%, var(--saffron) 65%, var(--saffron) 88%, transparent 88%);
}
.hero p.lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 30px;
    max-width: 540px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pic {
    position: relative;
    aspect-ratio: 4/5;
    border: 3px solid var(--ink);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 14px 14px 0 var(--brick);
    transform: rotate(-1deg);
}
.hero-pic img { width: 100%; height: 100%; object-fit: cover; }
.hero-pic .ticket {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: var(--ivory);
    border: 2px solid var(--ink);
    padding: 12px 18px;
    transform: rotate(3deg);
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.hero-pic .ticket b { color: var(--brick); display: block; font-size: 15px; margin-top: 2px; }
@media (max-width: 980px){
    .hero { padding: 40px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-pic { aspect-ratio: 4/3; transform: none; box-shadow: 8px 8px 0 var(--brick); }
    .hero-pic .ticket { transform: rotate(2deg); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    cursor: pointer;
    transition: transform .2s, background .2s, color .2s;
    font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--ivory); }
.btn-ink:hover { background: var(--brick); border-color: var(--brick); }
.btn-brick { background: var(--brick); color: var(--ivory); border-color: var(--brick); }
.btn-brick:hover { background: var(--brick-2); border-color: var(--brick-2); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-cream { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* ---------- Marquee ---------- */
.marq {
    background: var(--ink);
    color: var(--ivory);
    padding: 18px 0;
    border-top: 4px solid var(--saffron);
    border-bottom: 4px solid var(--saffron);
    overflow: hidden;
}
.marq .strip {
    display: flex;
    gap: 40px;
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 22px;
    white-space: nowrap;
    align-items: center;
}
.marq .strip i {
    display: inline-block;
    width: 10px; height: 10px;
    background: var(--brick);
    border-radius: 50%;
    margin: 0 16px;
}
.marq .strip b { color: var(--saffron); font-weight: 700; font-style: normal; font-family: "Courier New", monospace; letter-spacing: .26em; text-transform: uppercase; font-size: 14px; }

/* ---------- Section ---------- */
section.s { padding: 80px 0; position: relative; }
section.s.cream { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.s.forest { background: var(--forest); color: var(--ivory); }
.s-head { margin-bottom: 50px; }
.s-head .no {
    font-family: "Courier New", monospace;
    color: var(--brick);
    font-size: 12.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.s-head .no::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--brick);
}
section.s.forest .s-head .no { color: var(--saffron); }
section.s.forest .s-head .no::before { background: var(--saffron); }
.s-head h2 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    color: var(--ink);
    max-width: 720px;
    letter-spacing: -.005em;
}
section.s.forest .s-head h2 { color: var(--ivory); }
.s-head h2 em { color: var(--brick); font-style: italic; }
section.s.forest .s-head h2 em { color: var(--saffron); }
.s-head p { color: var(--muted); margin-top: 14px; max-width: 600px; font-size: 15.5px; }
section.s.forest .s-head p { color: #c5c2b1; }

/* ---------- Dotted divider ---------- */
.dotcut {
    border-top: 2px dashed var(--line-2);
    margin: 30px 0;
    position: relative;
}
.dotcut::before {
    content: "✂";
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--ivory);
    padding: 0 8px;
    color: var(--muted);
    font-size: 14px;
}

/* ---------- Pillars: 3 columns ---------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    padding: 28px 26px;
    position: relative;
    transition: transform .25s, background .25s, color .25s;
}
.pillar:hover { transform: translateY(-4px); background: var(--ink); color: var(--ivory); }
.pillar:hover .num { color: var(--saffron); border-color: var(--saffron); }
.pillar:hover p { color: #c5c2b1; }
.pillar .num {
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 28px;
    color: var(--brick);
    margin-bottom: 14px;
    display: inline-block;
    border-bottom: 2px solid var(--brick);
    padding-bottom: 4px;
    transition: color .25s, border-color .25s;
}
.pillar h3 {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .01em;
}
.pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.85; transition: color .25s; }
@media (max-width: 880px){ .pillars { grid-template-columns: 1fr; } }

/* ---------- Product cards ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 10px 10px 0 var(--saffron); }
.card-pic { aspect-ratio: 4/3; overflow: hidden; border-bottom: 1px solid var(--line); position: relative; }
.card-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-pic img { transform: scale(1.05); }
.card-pic .sku-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--ink);
    color: var(--saffron);
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: .14em;
    padding: 5px 10px;
}
.card-pic .price-tag {
    position: absolute;
    bottom: -12px;
    right: 12px;
    background: var(--brick);
    color: var(--ivory);
    padding: 6px 14px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    transform: rotate(-3deg);
    border: 2px solid var(--ink);
}
.card-body { padding: 26px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
    font-family: "Courier New", monospace;
    color: var(--brick);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.card h3 {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 14px; flex: 1; margin-bottom: 16px; }
.card .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--line-2);
    padding-top: 14px;
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.card .row .read { color: var(--brick); font-weight: 700; }
@media (max-width: 880px){ .cards { grid-template-columns: 1fr; } }

/* ---------- Story (image + text) ---------- */
.story-flex {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.story-flex .pic {
    aspect-ratio: 4/5;
    border: 3px solid var(--ink);
    overflow: hidden;
    position: relative;
    box-shadow: 12px 12px 0 var(--forest);
}
.story-flex .pic img { width: 100%; height: 100%; object-fit: cover; }
.story-flex .pic .stamp-on {
    position: absolute;
    top: 16px; right: -10px;
    background: var(--brick);
    color: var(--ivory);
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 18px;
    padding: 8px 16px;
    transform: rotate(4deg);
    border: 1px solid var(--ink);
}
.story-text h2 em { color: var(--brick); }
.story-text p {
    color: #2a2a2a;
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.9;
}
.story-text .signature {
    margin-top: 22px;
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--brick);
    border-bottom: 2px solid var(--ink);
    display: inline-block;
    padding-bottom: 4px;
}
@media (max-width: 980px){
    .story-flex { grid-template-columns: 1fr; gap: 30px; }
    .story-flex .pic { aspect-ratio: 4/3; box-shadow: 8px 8px 0 var(--forest); }
}

/* ---------- Stats / Numbered list ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px solid var(--ivory);
}
.stats-grid .it {
    padding: 26px 22px;
    border-right: 1px solid rgba(243,237,220,.16);
    text-align: center;
}
.stats-grid .it:last-child { border-right: none; }
.stats-grid .it strong {
    display: block;
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 38px;
    color: var(--saffron);
    letter-spacing: -.02em;
    font-weight: 700;
}
.stats-grid .it span {
    display: block;
    margin-top: 6px;
    font-family: "Courier New", monospace;
    font-size: 11.5px;
    color: #c5c2b1;
    letter-spacing: .22em;
    text-transform: uppercase;
}
@media (max-width: 720px){
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid .it { border-bottom: 1px solid rgba(243,237,220,.16); }
    .stats-grid .it:nth-child(even){ border-right: none; }
    .stats-grid .it:nth-last-child(-n+2){ border-bottom: none; }
}

/* ---------- CTA block ---------- */
.cta-block {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 40px 44px;
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
}
.cta-block::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--ink);
    pointer-events: none;
}
.cta-block h2 {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 8px;
    position: relative;
}
.cta-block h2 em { color: var(--brick); font-style: italic; }
.cta-block p { color: var(--muted); position: relative; max-width: 440px; }
.cta-block .actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; position: relative; }
@media (max-width: 720px){
    .cta-block { grid-template-columns: 1fr; padding: 28px 22px; }
    .cta-block .actions { justify-content: flex-start; }
}

/* ---------- Page head ---------- */
.page-head {
    padding: 60px 0 48px;
    border-bottom: 1px dashed var(--line-2);
    background: var(--ivory);
}
.page-head .no {
    font-family: "Courier New", monospace;
    color: var(--brick);
    font-size: 12px;
    letter-spacing: .32em;
    text-transform: uppercase;
}
.page-head h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    margin-top: 14px;
    max-width: 800px;
}
.page-head h1 em { color: var(--brick); font-style: italic; }
.page-head p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    max-width: 680px;
    line-height: 1.9;
}
.crumb {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    font-family: "Courier New", monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .14em;
    text-transform: uppercase;
}
.crumb a { color: var(--brick); font-weight: 700; }

/* ---------- Filter tags ---------- */
.taglist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.taglist a {
    border: 1.5px solid var(--ink);
    padding: 7px 14px;
    background: var(--paper);
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .2s;
}
.taglist a:hover, .taglist a.on { background: var(--ink); color: var(--saffron); }

/* ---------- Detail product ---------- */
.pd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}
.pd-pic {
    border: 3px solid var(--ink);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--paper);
    position: relative;
    box-shadow: 12px 12px 0 var(--saffron);
}
.pd-pic img { width: 100%; height: 100%; object-fit: cover; }
.pd-pic .pd-stamp {
    position: absolute;
    top: 18px; left: -8px;
    background: var(--brick);
    color: var(--ivory);
    padding: 8px 16px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    transform: rotate(-3deg);
    border: 1px solid var(--ink);
}
.pd-info .cat-line {
    font-family: "Courier New", monospace;
    color: var(--brick);
    font-size: 12px;
    letter-spacing: .26em;
    text-transform: uppercase;
}
.pd-info h1 {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.12;
    margin: 12px 0 16px;
}
.pd-info h1 em { color: var(--brick); font-style: italic; }
.pd-info .desc { color: #2a2a2a; font-size: 16px; line-height: 1.9; margin-bottom: 22px; }
.pd-price {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 16px 20px;
    margin: 0 0 24px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    position: relative;
}
.pd-price::before {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2px solid var(--ink);
    background: var(--brick);
    border-radius: 50%;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.pd-price strong {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 32px;
    color: var(--brick);
    font-weight: 700;
    letter-spacing: -.02em;
}
.pd-price small {
    font-family: "Courier New", monospace;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.pd-spec {
    background: var(--paper);
    border: 1px solid var(--line);
    margin-bottom: 24px;
}
.pd-spec .row {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-bottom: 1px solid var(--line);
}
.pd-spec .row:last-child { border-bottom: none; }
.pd-spec .k {
    background: var(--ivory-2);
    padding: 12px 16px;
    font-family: "Courier New", monospace;
    font-size: 11.5px;
    color: var(--ink);
    letter-spacing: .18em;
    text-transform: uppercase;
}
.pd-spec .v { padding: 12px 16px; font-size: 14.5px; color: var(--ink); }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 980px){
    .pd { grid-template-columns: 1fr; gap: 30px; padding: 36px 0; }
    .pd-pic { aspect-ratio: 4/3; box-shadow: 8px 8px 0 var(--saffron); }
}

/* ---------- Copy / long article ---------- */
.copy {
    max-width: 880px;
    margin: 0 auto;
    padding: 50px 0 70px;
}
.copy h2 {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 26px;
    font-weight: 700;
    margin: 32px 0 14px;
    color: var(--ink);
    border-left: 5px solid var(--brick);
    padding-left: 14px;
}
.copy h2 em { color: var(--brick); font-style: italic; }
.copy h3 { font-size: 18px; font-weight: 700; margin: 22px 0 10px; color: var(--ink-2); }
.copy p { margin-bottom: 14px; font-size: 16px; line-height: 1.95; color: #1d1d1d; }
.copy ul, .copy ol { margin: 8px 0 18px 22px; }
.copy li { margin-bottom: 6px; line-height: 1.9; }
.copy blockquote {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 16px 20px;
    margin: 18px 0;
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--brick);
    position: relative;
}
.copy blockquote::before {
    content: "\201C";
    font-size: 50px;
    position: absolute;
    left: 8px;
    top: -10px;
    color: var(--line-2);
}
.copy table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 22px;
    background: var(--paper);
}
.copy table th, .copy table td {
    border: 1px solid var(--line);
    padding: 10px 14px;
    font-size: 14px;
    text-align: left;
}
.copy table th { background: var(--ivory-2); font-weight: 700; }
.tag-row { margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row a {
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 5px 12px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.tag-row a:hover { background: var(--ink); color: var(--saffron); }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
}
.cform, .cinfo {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 32px 28px;
    position: relative;
}
.cform::before, .cinfo::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed var(--line-2);
    pointer-events: none;
}
.cform h3, .cinfo h3 {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}
.fld { margin-bottom: 14px; position: relative; }
.fld label {
    display: block;
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .18em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.fld input, .fld select, .fld textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--ink);
    background: var(--ivory);
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
    outline: 3px solid var(--saffron);
}
.cinfo .line {
    padding: 14px 0;
    border-bottom: 1px dashed var(--line-2);
    position: relative;
}
.cinfo .line:last-child { border-bottom: none; }
.cinfo .line small { font-family: "Courier New", monospace; color: var(--brick); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.cinfo .line strong { display: block; margin-top: 4px; font-family: "Playfair Display", "Georgia", serif; font-size: 18px; font-weight: 700; color: var(--ink); }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.bot {
    background: var(--ink);
    color: #c5c2b1;
    padding: 50px 0 0;
    border-top: 4px solid var(--brick);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid #2c2a26;
}
.foot-grid h4 {
    font-family: "Courier New", monospace;
    color: var(--saffron);
    font-size: 12px;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.foot-grid ul { list-style: none; }
.foot-grid li { padding: 4px 0; font-size: 13.5px; }
.foot-grid li a:hover { color: var(--saffron); }
.foot-grid p { font-size: 13.5px; line-height: 1.8; }
.foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.foot-brand .r-mark { width: 44px; height: 44px; font-size: 17px; }
.foot-brand strong { font-family: "Playfair Display", "Georgia", serif; color: var(--ivory); font-size: 16px; }
.foot-brand small { color: var(--saffron); font-family: "Courier New", monospace; font-size: 10px; letter-spacing: .26em; display: block; margin-top: 2px; }
.foot-bot {
    text-align: center;
    padding: 20px 0 26px;
    font-family: "Courier New", monospace;
    font-size: 11px;
    color: #80776a;
    letter-spacing: .22em;
    text-transform: uppercase;
}
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid { grid-template-columns: 1fr; } }
