:root {
    --ink: #11110f;
    --black: #0b0b0b;
    --charcoal: #171715;
    --ivory: #f6f3ec;
    --paper: #fbf9f4;
    --stone: #e8e1d6;
    --line: #d8d0c3;
    --muted: #6f685e;
    --gold: #b59a5a;
    --gold-light: #d7c59b;
    --bronze: #8a6a4a;
    --wood: #4b3628;
    --danger: #7e2d2b;
    --success: #325f46;
    --font-display: "Bodoni 72", Didot, "Didot LT STD", "Iowan Old Style", Georgia, serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shell: min(1560px, calc(100vw - 64px));
    --reading: 760px;
    --shadow: 0 24px 70px rgba(25, 20, 14, .13);
    --header-height: 144px;
    --prototype-height: 34px;
    --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-light); color: var(--black); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 6vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.6rem); }
h3 { font-size: clamp(1.55rem, 2.1vw, 2.2rem); }
p { margin-bottom: 1.3em; }
strong { font-weight: 650; }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 9999;
    transform: translateY(-160%);
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border: 2px solid #000;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--wide { width: min(1600px, calc(100vw - 64px)); }
.reading { width: min(var(--reading), calc(100vw - 40px)); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 150px) 0; }
.section--tight { padding: clamp(56px, 6vw, 96px) 0; }
.section--dark { background: var(--black); color: var(--ivory); }
.section--paper { background: var(--paper); }
.section--stone { background: #efe9df; }
.eyebrow {
    margin: 0 0 16px;
    color: var(--bronze);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .19em;
    text-transform: uppercase;
}
.section--dark .eyebrow { color: var(--gold); }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 54px;
}
.section-heading h2 { max-width: 920px; margin-bottom: 0; }
.section-heading p { max-width: 520px; margin-bottom: 4px; color: var(--muted); }
.section--dark .section-heading p { color: #c8c1b6; }
.rule { width: 54px; height: 2px; background: var(--gold); margin: 25px 0; }

.prototype-banner {
    position: relative;
    z-index: 1002;
    min-height: var(--prototype-height);
    display: grid;
    place-items: center;
    padding: 6px 18px;
    background: #151411;
    color: #ddd2bf;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .055em;
    text-align: center;
}

.site-header {
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid transparent;
}
.site-header--overlay {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ivory);
    background: linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,0));
}
.has-prototype-banner .site-header--overlay { top: var(--prototype-height); }
.site-header--solid {
    position: relative;
    color: var(--ink);
    background: rgba(246,243,236,.97);
    border-bottom-color: var(--line);
}
.site-header__main {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}
.wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    text-decoration: none;
}
.wordmark__name {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.5vw, 2.55rem);
    line-height: 1;
    letter-spacing: .36em;
    padding-left: .36em;
    white-space: nowrap;
}
.wordmark__tagline {
    margin-top: 12px;
    font-size: .59rem;
    font-weight: 650;
    letter-spacing: .19em;
    opacity: .9;
}
.menu-toggle {
    justify-self: start;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 1.5px; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.header-tools {
    justify-self: end;
    display: flex;
    gap: 15px;
}
.header-tools a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    text-decoration: none;
}
.header-tools svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.main-navigation { border-top: 1px solid rgba(255,255,255,.15); }
.site-header--solid .main-navigation { border-top-color: var(--line); }
.main-navigation .shell {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4.6vw, 74px);
}
.main-navigation a {
    position: relative;
    font-size: .74rem;
    font-weight: 650;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}
.main-navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -7px;
    height: 1px;
    background: var(--gold);
    transition: left .25s ease, right .25s ease;
}
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after { left: 0; right: 0; }

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 24px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    font-size: .73rem;
    font-weight: 750;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { color: #fff; border-color: rgba(255,255,255,.72); }
.button--light:hover { background: #fff; color: var(--black); border-color: #fff; }
.button--dark { background: var(--black); color: #fff; border-color: var(--black); }
.button--dark:hover { background: var(--bronze); border-color: var(--bronze); }
.button--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.button--ghost { color: var(--ink); border-color: var(--line); }
.button--full { width: 100%; }
.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: inherit;
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .11em;
    text-decoration: none;
    text-transform: uppercase;
}
.text-link span { color: var(--gold); transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

/* Home */
.home-hero {
    position: relative;
    min-height: min(940px, 100svh);
    display: flex;
    align-items: center;
    color: var(--ivory);
    background-color: #141311;
    background-image: url('../img/hero-karantaine.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,.66) 0%, rgba(5,5,5,.34) 38%, rgba(5,5,5,.03) 70%), linear-gradient(0deg, rgba(0,0,0,.34), transparent 45%);
    pointer-events: none;
}
.home-hero__content {
    position: relative;
    z-index: 2;
    width: min(1600px, calc(100vw - 64px));
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 130px;
}
.home-hero__copy { max-width: 650px; }
.home-hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3.3rem, 6.6vw, 7.4rem);
    letter-spacing: -.035em;
}
.home-hero__lead {
    max-width: 590px;
    margin-bottom: 34px;
    color: #eee9df;
    font-family: var(--font-serif);
    font-size: clamp(1.28rem, 2vw, 1.75rem);
    line-height: 1.45;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.home-hero__quote {
    margin-top: 62px;
    max-width: 430px;
    padding-left: 26px;
    border-left: 1px solid var(--gold);
    font-family: var(--font-serif);
    font-size: 1.17rem;
    line-height: 1.55;
    color: #d9d1c4;
}
.home-hero__counter {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: min(1600px, calc(100vw - 64px));
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255,255,255,.3);
    color: #e9e2d7;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.home-hero__counter strong { color: #fff; }

.principles { background: var(--paper); border-bottom: 1px solid var(--line); }
.principles__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 50px 0 54px;
}
.principle {
    min-height: 230px;
    padding: 4px 35px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.principle:last-child { border-right: 0; }
.principle svg { width: 44px; height: 44px; margin: 0 auto 23px; fill: none; stroke: var(--gold); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.principle h2 { margin-bottom: 11px; font-size: 1.03rem; letter-spacing: .02em; text-transform: uppercase; }
.principle p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }

.collection-preview { background: var(--ivory); }
.collection-kicker { text-align: center; margin-bottom: 48px; }
.collection-kicker h2 { margin-bottom: 0; font-size: clamp(2.7rem, 4.6vw, 5.2rem); }
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.object-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid #ded7cc;
    transition: transform .25s ease, box-shadow .25s ease;
}
.object-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.object-card__image { position: relative; aspect-ratio: 5 / 6; overflow: hidden; background: #ded5c7; text-decoration: none; }
.object-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.object-card:hover .object-card__image img { transform: scale(1.035); }
.object-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px 23px 18px; }
.object-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--bronze); font-size: .66rem; font-weight: 750; letter-spacing: .12em; }
.object-card h3 { margin: 16px 0 11px; font-size: 1.42rem; line-height: 1.15; }
.object-card h3 a { text-decoration: none; }
.object-card p { flex: 1; margin-bottom: 22px; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.object-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); }
.object-card__footer strong { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; }
.object-card__footer a { width: 35px; height: 35px; display: grid; place-items: center; color: var(--bronze); text-decoration: none; font-size: 1.25rem; }
.collection-actions { display: flex; justify-content: center; margin-top: 46px; }

.how-it-works { background: #eee8de; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { position: relative; padding: 46px 52px 52px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step__number { display: block; margin-bottom: 42px; color: var(--gold); font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.step h3 { margin-bottom: 14px; }
.step p { color: var(--muted); font-size: .95rem; }

.editorial-split { display: grid; grid-template-columns: 1fr 1.14fr; min-height: 660px; }
.editorial-split--reverse { grid-template-columns: 1.14fr 1fr; }
.editorial-split__copy { display: flex; align-items: center; padding: clamp(60px, 8vw, 125px); background: var(--black); color: var(--ivory); }
.editorial-split__copy-inner { max-width: 620px; }
.editorial-split__copy h2 { margin-bottom: 27px; font-size: clamp(2.7rem, 4.4vw, 5rem); }
.editorial-split__copy p { max-width: 520px; color: #cfc8bd; }
.editorial-split__media { min-height: 560px; background-size: cover; background-position: center; }
.editorial-split__media--journal { background-image: url('../img/editorial-journal.webp'); }
.editorial-split__media--gift { background-image: url('../img/art-offrir.webp'); }
.editorial-split--reverse .editorial-split__media { order: -1; }

.method-highlight { background: var(--paper); }
.method-highlight__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.method-highlight__statement { position: sticky; top: 40px; }
.method-highlight__statement h2 { font-size: clamp(3rem, 5.5vw, 6rem); }
.criteria-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.criterion { display: grid; grid-template-columns: 78px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.criterion__number { color: var(--gold); font-family: var(--font-display); font-size: 2.25rem; }
.criterion h3 { margin-bottom: 8px; font-size: 1.45rem; }
.criterion p { margin: 0; color: var(--muted); }

.trust-strip { background: #101010; color: #eee8dd; border-top: 1px solid #2b2925; border-bottom: 1px solid #2b2925; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: center; min-height: 118px; padding: 24px 34px; border-right: 1px solid #302e29; }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 38px; height: 38px; fill: none; stroke: var(--gold-light); stroke-width: 1.35; }
.trust-item strong { display: block; margin-bottom: 2px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.trust-item span { color: #a9a297; font-size: .76rem; }

/* Collection */
.page-hero {
    padding: clamp(78px, 9vw, 145px) 0 clamp(58px, 7vw, 105px);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 80px; align-items: end; }
.page-hero h1 { margin-bottom: 0; }
.page-hero__intro { max-width: 590px; color: var(--muted); font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.55; }
.page-hero__intro p:last-child { margin-bottom: 0; }
.collection-toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,243,236,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.collection-toolbar__inner { display: flex; gap: 16px; align-items: center; justify-content: space-between; min-height: 84px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-button, .filter-select {
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-size: .73rem;
    font-weight: 650;
    letter-spacing: .06em;
    cursor: pointer;
}
.filter-button.is-active { background: var(--black); color: #fff; border-color: var(--black); }
.collection-count { color: var(--muted); font-size: .78rem; white-space: nowrap; }
.collection-page-grid { padding: 66px 0 130px; }
.object-card[hidden] { display: none !important; }
.empty-filter { display: none; padding: 65px 30px; text-align: center; border: 1px solid var(--line); background: var(--paper); }
.empty-filter.is-visible { display: block; }

/* Object page */
.object-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.object-hero__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(430px, .82fr); min-height: 760px; }
.object-hero__media { position: relative; overflow: hidden; background: #ded5c8; }
.object-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.object-hero__media::after { content: "Illustration éditoriale créée pour Karantaine"; position: absolute; left: 24px; bottom: 18px; padding: 7px 9px; background: rgba(10,10,10,.72); color: #e8e1d5; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
.object-hero__copy { display: flex; align-items: center; padding: clamp(55px, 6vw, 105px); }
.object-hero__copy-inner { max-width: 650px; }
.object-index { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 32px; color: var(--bronze); font-size: .72rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.object-hero h1 { margin-bottom: 24px; font-size: clamp(3.5rem, 5.4vw, 6.3rem); }
.object-tagline { margin-bottom: 31px; color: #514b43; font-family: var(--font-serif); font-size: clamp(1.27rem, 1.9vw, 1.65rem); line-height: 1.48; }
.object-price { display: flex; gap: 12px; align-items: baseline; margin-bottom: 27px; }
.object-price span { color: var(--muted); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.object-price strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; }
.object-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.object-tag { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.object-cta-note { max-width: 530px; margin: 16px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.object-cta-note a { color: inherit; }
.object-main { background: var(--ivory); }
.object-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 100px; align-items: start; }
.object-article { min-width: 0; }
.object-section { padding: 0 0 70px; margin-bottom: 70px; border-bottom: 1px solid var(--line); }
.object-section:last-child { border-bottom: 0; }
.object-section h2 { margin-bottom: 25px; font-size: clamp(2.3rem, 3.5vw, 3.9rem); }
.object-section > p { max-width: var(--reading); color: #3b3833; }
.object-section__lead { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.55; color: var(--ink) !important; }
.object-sidebar { position: sticky; top: 38px; }
.fact-card { background: var(--paper); border: 1px solid var(--line); padding: 30px; }
.fact-card h2 { margin-bottom: 24px; font-size: 1.42rem; }
.fact-list { margin: 0; }
.fact-list div { display: grid; grid-template-columns: 95px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.fact-list dt { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.fact-list dd { margin: 0; font-family: var(--font-serif); font-size: .94rem; line-height: 1.45; }
.fact-card .button { margin-top: 24px; }
.object-detail-visual { position: relative; aspect-ratio: 16/9; margin: 0 0 75px; overflow: hidden; background: #d8cfbf; }
.object-detail-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); filter: contrast(1.02) saturate(.9); }
.object-detail-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); background: var(--paper); }
.verdict__qualities, .verdict__reserve { padding: 34px; }
.verdict__reserve { background: #171715; color: var(--ivory); }
.verdict h3 { font-size: 1.34rem; }
.verdict ul { margin: 0; padding-left: 20px; }
.verdict li { margin-bottom: 10px; }
.verdict__reserve p { color: #c9c2b6; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
}
.faq-item button span:last-child { color: var(--gold); font-family: var(--font-sans); font-size: 1.5rem; }
.faq-item__answer { max-width: 700px; overflow: hidden; transition: max-height .25s ease; }
.faq-item__answer p { padding-bottom: 24px; color: var(--muted); }
.related-objects { background: #ece5db; }
.mobile-object-cta { display: none; }

/* Guides */
.guides-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.guide-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; overflow: hidden; background: var(--black); color: var(--ivory); text-decoration: none; }
.guide-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(181,154,90,.35), transparent 37%), linear-gradient(135deg, #1f1c17, #080808 70%); transition: transform .45s ease; }
.guide-card:hover::before { transform: scale(1.04); }
.guide-card > * { position: relative; z-index: 1; }
.guide-card h2 { max-width: 600px; margin-bottom: 18px; font-size: clamp(2.2rem, 3.7vw, 4rem); }
.guide-card p { max-width: 590px; color: #c7c0b5; }
.guide-card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.guide-hero { background: var(--black); color: var(--ivory); padding: clamp(85px, 10vw, 160px) 0; }
.guide-hero__inner { width: min(1050px, calc(100vw - 48px)); margin: auto; }
.guide-hero h1 { margin-bottom: 31px; }
.guide-hero__intro { max-width: 830px; color: #d3ccc0; font-family: var(--font-serif); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.55; }
.guide-content { padding: 100px 0 135px; }
.guide-content__layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 100px; align-items: start; }
.guide-section { margin-bottom: 78px; }
.guide-section h2 { margin-bottom: 25px; font-size: clamp(2.35rem, 4vw, 4.2rem); }
.guide-section p { color: #3f3b36; }
.guide-section ul { margin: 25px 0; padding: 0; list-style: none; }
.guide-section li { position: relative; padding: 14px 0 14px 28px; border-top: 1px solid var(--line); }
.guide-section li:last-child { border-bottom: 1px solid var(--line); }
.guide-section li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.guide-aside { position: sticky; top: 32px; padding: 28px; background: var(--paper); border: 1px solid var(--line); }
.guide-aside h2 { font-size: 1.35rem; }
.guide-aside a { display: block; padding: 12px 0; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 650; text-decoration: none; }

/* Editorial / simple pages */
.simple-page { padding: clamp(75px, 9vw, 145px) 0; background: var(--ivory); min-height: 60vh; }
.simple-page .reading { width: min(820px, calc(100vw - 40px)); }
.simple-page h1 { margin-bottom: 34px; }
.simple-page h2 { margin-top: 70px; margin-bottom: 22px; font-size: clamp(2.15rem, 3.4vw, 3.6rem); }
.simple-page h3 { margin-top: 40px; font-size: 1.55rem; }
.simple-page p, .simple-page li { color: #3f3b36; }
.simple-page .lead { color: var(--ink); font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.55; }
.simple-page ul { padding-left: 1.2em; }
.simple-page li { margin-bottom: 9px; }
.manifesto-quote { margin: 70px 0; padding: 50px 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.12; text-align: center; }
.method-table { width: 100%; border-collapse: collapse; margin: 35px 0; font-size: .92rem; }
.method-table th, .method-table td { padding: 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.method-table th { background: var(--black); color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-panel { margin-top: 70px; padding: 44px; background: var(--black); color: var(--ivory); }
.contact-panel p { color: #c9c2b6; }
.contact-panel a { color: var(--gold-light); }
.notice { padding: 20px 24px; background: #eee6d9; border-left: 3px solid var(--gold); color: #453f37; }
.success-notice { background: #e7eee8; border-left-color: var(--success); }
.error-notice { background: #f2e4e1; border-left-color: var(--danger); }

/* Request/reveal */
.reference-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.reference-modal.is-open { display: block; }
.reference-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(7px); }
.reference-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(680px, calc(100vw - 28px));
    max-height: min(900px, calc(100svh - 28px));
    overflow: auto;
    transform: translate(-50%, -50%);
    padding: clamp(30px, 5vw, 58px);
    background: var(--paper);
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
}
.reference-modal__dialog h2 { margin-bottom: 17px; font-size: clamp(2rem, 4vw, 3.35rem); }
.reference-modal__dialog > p:not(.eyebrow) { color: var(--muted); font-size: .94rem; }
.reference-modal__close { position: absolute; top: 15px; right: 17px; width: 42px; height: 42px; border: 0; background: transparent; font-family: var(--font-sans); font-size: 2rem; line-height: 1; cursor: pointer; }
.reference-form { display: grid; gap: 20px; margin-top: 30px; }
.reference-form > label, .reference-form fieldset { display: grid; gap: 8px; margin: 0; padding: 0; border: 0; font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.reference-form input[type="email"], .reference-form input[type="text"], .reference-form input[type="tel"], .reference-form select, .reference-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #bdb5a9;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
}
.reference-form textarea { min-height: 120px; resize: vertical; }
.reference-form legend { margin-bottom: 11px; }
.radio-line, .check-line { display: grid !important; grid-template-columns: 20px 1fr; gap: 11px !important; align-items: start; padding: 9px 0; font-weight: 400 !important; letter-spacing: 0 !important; }
.radio-line input, .check-line input { width: 17px; height: 17px; margin-top: 4px; accent-color: var(--black); }
.optional { color: var(--muted); font-weight: 400; }
.form-privacy { margin: -2px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.55; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.thank-you { min-height: 65vh; display: grid; place-items: center; padding: 90px 20px; }
.thank-you__card { width: min(720px, 100%); padding: clamp(35px, 6vw, 70px); background: var(--paper); border: 1px solid var(--line); text-align: center; }
.thank-you__card h1 { font-size: clamp(2.7rem, 5vw, 4.9rem); }
.thank-you__card p { color: var(--muted); }
.dev-link { margin-top: 28px; padding: 20px; background: #f0e8d9; border: 1px dashed var(--gold); font-size: .8rem; text-align: left; word-break: break-word; }

.reveal-page { background: #efe9df; }
.reveal-hero { padding: 85px 0; background: var(--black); color: var(--ivory); }
.reveal-hero__grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 80px; align-items: center; }
.reveal-hero__image { aspect-ratio: 5/6; overflow: hidden; background: #2a2925; }
.reveal-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.reveal-hero h1 { margin-bottom: 22px; font-size: clamp(3.2rem, 5.8vw, 6.5rem); }
.reveal-object-label { color: var(--gold-light); font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.reveal-brand { margin: 35px 0 10px; color: var(--gold-light); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.reveal-model { margin-bottom: 20px; font-family: var(--font-display); font-size: clamp(2.2rem, 3.7vw, 4.2rem); line-height: 1.08; }
.reveal-details { padding: 90px 0 125px; }
.reveal-details__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.reveal-panel { padding: 38px; background: var(--paper); border: 1px solid var(--line); }
.reveal-panel h2 { font-size: 2rem; }
.reveal-list { margin: 0; }
.reveal-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.reveal-list dt { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.reveal-list dd { margin: 0; font-family: var(--font-serif); }
.feedback-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* Footer */
.site-footer { background: #0b0b0b; color: #eee8dd; }
.site-footer__top { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1fr; gap: 60px; padding: 78px 0 65px; }
.wordmark--footer { align-items: flex-start; }
.wordmark--footer .wordmark__name { font-size: 2rem; }
.footer-brand > p { max-width: 390px; color: #b7b0a5; font-family: var(--font-serif); font-size: 1rem; line-height: 1.6; }
.footer-brand .footer-note { color: #777168; font-family: var(--font-sans); font-size: .72rem; }
.site-footer h2 { margin-bottom: 22px; color: var(--gold-light); font-family: var(--font-sans); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__top > div:not(.footer-brand) > a { display: block; margin: 0 0 10px; color: #bdb6ab; font-size: .82rem; text-decoration: none; }
.site-footer__top > div:not(.footer-brand) > a:hover { color: #fff; }
.footer-newsletter p { color: #aaa398; font-size: .82rem; }
.footer-newsletter .text-link { color: var(--gold-light); font-size: .66rem; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 23px 0 28px; border-top: 1px solid #2d2b27; color: #767168; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }

/* Animation helpers */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
    :root { --shell: min(1180px, calc(100vw - 48px)); }
    .shell--wide { width: min(1280px, calc(100vw - 48px)); }
    .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .principle { padding-inline: 22px; }
    .site-footer__top { grid-template-columns: 1.3fr .7fr .7fr; }
    .footer-newsletter { grid-column: 2 / 4; }
    .object-layout { gap: 65px; }
}

@media (max-width: 980px) {
    :root { --header-height: 86px; }
    body { font-size: 17px; }
    .site-header__main { min-height: 82px; }
    .wordmark__name { font-size: 1.65rem; letter-spacing: .28em; padding-left: .28em; }
    .wordmark__tagline { display: none; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        padding: 15px 0 28px;
        background: rgba(11,11,11,.98);
        color: #fff;
        border-top: 1px solid #333;
    }
    .has-prototype-banner .site-header--overlay .main-navigation { top: 82px; }
    .site-header--solid .main-navigation { background: var(--paper); color: var(--ink); }
    .main-navigation.is-open { display: block; }
    .main-navigation .shell { min-height: 0; display: grid; gap: 0; }
    .main-navigation a { padding: 14px 4px; border-bottom: 1px solid rgba(128,128,128,.25); }
    .home-hero { min-height: 900px; background-position: 62% center; }
    .home-hero__content { width: calc(100vw - 48px); padding-top: 170px; }
    .home-hero__copy { max-width: 590px; }
    .home-hero__counter { width: calc(100vw - 48px); }
    .principles__grid { grid-template-columns: repeat(2, 1fr); }
    .principle { border-bottom: 1px solid var(--line); }
    .principle:nth-child(2n) { border-right: 0; }
    .principle:last-child { grid-column: 1 / -1; border-bottom: 0; }
    .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-heading, .page-hero__grid { grid-template-columns: 1fr; gap: 28px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-right: 0; border-bottom: 1px solid var(--line); }
    .step:last-child { border-bottom: 0; }
    .editorial-split, .editorial-split--reverse { grid-template-columns: 1fr; }
    .editorial-split__media, .editorial-split--reverse .editorial-split__media { min-height: 500px; order: 0; }
    .method-highlight__grid { grid-template-columns: 1fr; gap: 55px; }
    .method-highlight__statement { position: static; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid #302e29; }
    .object-hero__grid { grid-template-columns: 1fr; }
    .object-hero__media { min-height: 660px; }
    .object-layout { grid-template-columns: 1fr; }
    .object-sidebar { position: static; order: -1; }
    .fact-card { max-width: 720px; }
    .guide-content__layout { grid-template-columns: 1fr; }
    .guide-aside { position: static; }
    .reveal-hero__grid { grid-template-columns: 1fr; }
    .reveal-hero__image { max-width: 600px; }
    .reveal-details__grid { grid-template-columns: 1fr; }
    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    :root { --shell: calc(100vw - 28px); --prototype-height: 48px; }
    body { font-size: 16px; }
    h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
    h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
    .shell--wide { width: calc(100vw - 28px); }
    .prototype-banner { min-height: var(--prototype-height); font-size: 10px; }
    .site-header__main { grid-template-columns: 44px 1fr 44px; gap: 5px; }
    .header-tools a:first-child { display: none; }
    .header-tools { gap: 0; }
    .wordmark__name { font-size: 1.22rem; letter-spacing: .22em; padding-left: .22em; }
    .home-hero {
        min-height: 820px;
        background-image: url('../img/hero-karantaine-mobile.webp');
        background-position: 65% center;
    }
    .home-hero::after { background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.27)), linear-gradient(0deg, rgba(0,0,0,.48), transparent 55%); }
    .home-hero__content { width: calc(100vw - 32px); padding-top: 150px; padding-bottom: 150px; }
    .home-hero h1 { font-size: clamp(3.15rem, 15vw, 4.8rem); }
    .home-hero__lead { font-size: 1.15rem; }
    .home-hero__actions { align-items: stretch; flex-direction: column; }
    .home-hero__actions .button { width: 100%; }
    .home-hero__quote { display: none; }
    .home-hero__counter { width: calc(100vw - 32px); display: block; padding-bottom: 20px; font-size: .65rem; }
    .home-hero__counter span:last-child { display: none; }
    .principles__grid { grid-template-columns: 1fr; padding: 30px 0; }
    .principle { min-height: 0; padding: 30px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
    .principle:last-child { grid-column: auto; }
    .section { padding: 75px 0; }
    .section-heading { margin-bottom: 38px; }
    .collection-grid { grid-template-columns: 1fr; gap: 22px; }
    .object-card__body { padding: 21px 20px 17px; }
    .editorial-split__copy { padding: 65px 24px; }
    .editorial-split__media { min-height: 360px; }
    .criterion { grid-template-columns: 55px 1fr; gap: 17px; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0 !important; border-bottom: 1px solid #302e29; }
    .trust-item:last-child { border-bottom: 0; }
    .page-hero { padding-top: 65px; }
    .page-hero__intro { font-size: 1.18rem; }
    .collection-toolbar { position: relative; }
    .collection-toolbar__inner { display: grid; padding: 17px 0; }
    .filter-group { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .filter-button, .filter-select { width: 100%; }
    .collection-count { order: -1; }
    .object-hero__media { min-height: 490px; }
    .object-hero__copy { padding: 48px 22px 60px; }
    .object-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .object-index { font-size: .64rem; }
    .object-layout { gap: 50px; }
    .object-section { padding-bottom: 52px; margin-bottom: 52px; }
    .verdict { grid-template-columns: 1fr; }
    .fact-list div { grid-template-columns: 1fr; gap: 4px; }
    .object-detail-visual { aspect-ratio: 1/1; }
    .mobile-object-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 800;
        display: block;
        padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
        background: rgba(246,243,236,.98);
        border-top: 1px solid var(--line);
    }
    .mobile-object-cta .button { width: 100%; }
    .guides-grid { grid-template-columns: 1fr; }
    .guide-card { min-height: 360px; padding: 30px; }
    .guide-hero { padding: 75px 0; }
    .guide-content { padding: 75px 0 100px; }
    .method-table { display: block; overflow-x: auto; white-space: nowrap; }
    .contact-panel { padding: 30px 24px; }
    .reveal-hero { padding: 58px 0; }
    .reveal-hero__grid { gap: 40px; }
    .reveal-details { padding: 65px 0 95px; }
    .reveal-panel { padding: 27px 22px; }
    .reveal-list div { grid-template-columns: 1fr; gap: 3px; }
    .site-footer__top { grid-template-columns: 1fr; gap: 38px; padding: 60px 0 50px; }
    .footer-brand, .footer-newsletter { grid-column: auto; }
    .site-footer__bottom { display: grid; gap: 8px; }
    .reference-modal__dialog { padding-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
