/* ==========================================================================
   Phytomem One store stylesheet - "Laurel & Ink"
   Warm apothecary shell: parchment stock, navy ink, gold rules, orange action.
   Naming: BEM-lite with an lk- prefix. Indent: 4 spaces.
   ========================================================================== */

:root {
    --paper: #faf5ea;
    --paper-2: #f2e9d6;
    --card: #fffdf7;
    --ink: #16233f;
    --ink-2: #1b2b4d;
    --ink-deep: #101a30;
    --cream: #f3ecdd;
    --muted: #5a6274;
    --gold: #c9a24a;
    --gold-text: #8a6220;
    --gold-line: #ddc38a;
    --gold-tint: #f6ecd6;
    --orange: #c25a0a;
    --orange-hi: #a44a06;
    --orange-bright: #e8821f;
    --orange-tint: #fdeedd;
    --jade: #1f6b4c;
    --jade-tint: #e6f2eb;
    --rule: #e4d9c1;
    --shadow: 0 10px 34px rgba(22, 35, 63, .10);
    --shadow-lift: 0 18px 46px rgba(22, 35, 63, .18);
    --r: 14px;
    --r-sm: 10px;
    --wrap: 1120px;
    --serif: "Trirong", Georgia, "Times New Roman", serif;
    --sans: "Cabin", "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    background-image:
        radial-gradient(circle at 18% 12%, rgba(201, 162, 74, .07) 0, transparent 38%),
        radial-gradient(circle at 84% 4%, rgba(232, 130, 31, .06) 0, transparent 34%);
    color: var(--ink);
    font: 400 17px/1.68 var(--sans);
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.24rem; }
p { margin: 0 0 1.05em; }
a { color: var(--orange-hi); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.lk-wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.lk-narrow { width: min(100%, 800px); margin-inline: auto; }

.lk-skip {
    position: absolute; left: -9999px; top: 0; z-index: 90;
    background: var(--ink); color: var(--cream); padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.lk-skip:focus { left: 0; }

/* --- announcement + masthead --------------------------------------------- */

.lk-strap {
    background: var(--ink-deep);
    color: var(--cream);
    font-size: .82rem;
    letter-spacing: .04em;
    text-align: center;
    padding: .55rem 1rem;
    border-bottom: 2px solid var(--gold);
}

.lk-mast {
    position: sticky; top: 0; z-index: 60;
    background: rgba(250, 245, 234, .97);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid var(--rule);
}
.lk-mast__in { display: flex; align-items: center; gap: 1rem; min-height: 74px; position: relative; }

.lk-logo { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); }
.lk-logo span { font-family: var(--serif); font-weight: 700; font-size: 1.42rem; letter-spacing: .01em; }
.lk-logo em { font-style: normal; color: var(--orange); margin-left: .22em; }

.lk-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.lk-nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.lk-nav a { color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 600; padding: .3rem 0; border-bottom: 2px solid transparent; }
.lk-nav a:hover, .lk-nav a[aria-current] { border-bottom-color: var(--gold); }
.lk-nav__cta { border-bottom: 0 !important; }

.lk-burger { display: none; width: 46px; height: 42px; margin-left: auto; background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-sm); cursor: pointer; padding: 11px 10px; }
.lk-burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.lk-burger span + span { margin-top: 5px; }

/* --- buttons -------------------------------------------------------------- */

.lk-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    background: var(--orange); color: #fff;
    font: 700 1.06rem/1 var(--sans);
    padding: 1.05rem 1.9rem;
    border: 0; border-radius: 999px; text-decoration: none;
    box-shadow: 0 6px 0 var(--orange-hi);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.lk-btn:hover { background: var(--orange-hi); color: #fff; transform: translateY(2px); box-shadow: 0 4px 0 #8b3d04; }
.lk-btn--sm { font-size: .93rem; padding: .68rem 1.25rem; box-shadow: 0 4px 0 var(--orange-hi); }
.lk-btn--wide { width: 100%; font-size: 1.16rem; padding: 1.15rem 1.4rem; }
.lk-btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow: none; }
.lk-btn--ghost:hover { background: var(--ink); color: var(--cream); transform: none; box-shadow: none; }

/* --- hero + buy box (centred stack) -------------------------------------- */

.lk-hero { padding: 3.2rem 0 2.4rem; text-align: center; position: relative; }
.lk-hero::after {
    content: ""; display: block; width: 220px; height: 1px; margin: 2.6rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
.lk-kicker {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .19em;
    text-transform: uppercase; color: var(--gold-text); margin-bottom: 1rem;
}
.lk-hero h1 { max-width: 18ch; margin-inline: auto; }
.lk-lede { font-size: 1.16rem; color: var(--muted); max-width: 62ch; margin: 0 auto 1.5rem; }
.lk-define {
    font-size: 1.1rem; font-weight: 600; color: var(--ink);
    max-width: 66ch; margin: 0 auto 1.6rem; padding: 1.05rem 1.3rem;
    background: var(--gold-tint); border-left: 4px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0;
    text-align: left;
}

.lk-stars { display: inline-flex; align-items: center; gap: .55rem; font-size: .96rem; color: var(--muted); flex-wrap: wrap; justify-content: center; }
.lk-stars b { color: var(--ink); font-size: 1.05rem; }
.lk-stars__glyph { color: var(--gold); letter-spacing: .12em; font-size: 1.1rem; }

.lk-shot { margin: 1.8rem auto .4rem; display: block; width: min(100%, 340px); }
.lk-laurels { display: flex; gap: clamp(1rem, 4vw, 3rem); justify-content: center; flex-wrap: wrap; margin: .4rem 0 0; padding: 0; list-style: none; }
.lk-laurels li { width: 128px; color: var(--gold); position: relative; }
.lk-laurels b { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.lk-laurels span { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-text); font-weight: 700; }
.lk-laurels .lk-badge-in { position: absolute; inset: 0; display: grid; place-content: center; padding: 0 1.4rem; }
.lk-wreath { width: 100%; height: auto; display: block; }

/* --- pack selector: laurel medallion cards -------------------------------- */

.lk-buy { padding: 0 0 3.4rem; }
.lk-buy__head { text-align: center; margin-bottom: 1.6rem; }
.lk-buy__head h2 { margin-bottom: .35rem; }

.lk-packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 0 0 1.6rem; }
.lk-pack { position: relative; }
.lk-pack input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.lk-pack__face {
    display: block; cursor: pointer; height: 100%;
    background: var(--card); border: 2px solid var(--rule); border-radius: var(--r);
    padding: 1.5rem 1.15rem 1.35rem; text-align: center;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.lk-pack__face:hover { border-color: var(--gold-line); box-shadow: var(--shadow); }
.lk-pack__medal {
    width: 124px; height: 124px; margin: 0 auto .7rem;
    position: relative; color: var(--gold); display: grid; place-items: center;
}
.lk-pack__medal .lk-wreath { position: absolute; inset: 0; }
.lk-pack__medal img {
    position: relative; width: auto; max-width: 74%; max-height: 74%;
    object-fit: contain; filter: drop-shadow(0 3px 6px rgba(22, 35, 63, .16));
}
.lk-pack__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; display: block; }
.lk-pack__supply { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .75rem; }
.lk-pack__per { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.lk-pack__per sup { font-size: .95rem; top: -1.1em; }
.lk-pack__unit { display: block; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.lk-pack__was { color: var(--muted); font-size: .92rem; }
.lk-pack__save { display: inline-block; background: var(--jade-tint); color: var(--jade); font-weight: 700; font-size: .85rem; padding: .2rem .65rem; border-radius: 999px; margin-left: .3rem; }
.lk-pack__lines { list-style: none; margin: .9rem 0 0; padding: .9rem 0 0; border-top: 1px dashed var(--rule); font-size: .88rem; color: var(--muted); }
.lk-pack__lines li + li { margin-top: .25rem; }
.lk-pack__flag {
    position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
    background: var(--ink); color: var(--gold); font-size: .7rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; padding: .32rem .85rem; border-radius: 999px; white-space: nowrap; z-index: 2;
}
.lk-pack:has(input:checked) .lk-pack__face {
    border-color: var(--orange); background: var(--orange-tint);
    box-shadow: var(--shadow-lift);
}
.lk-pack:has(input:checked) .lk-pack__medal { color: var(--orange); }
.lk-pack:has(input:focus-visible) .lk-pack__face { outline: 3px solid var(--orange); outline-offset: 3px; }
.lk-pack__tick { display: none; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-hi); margin-top: .8rem; }
.lk-pack__tick::before { content: "\2713"; margin-right: .35rem; }
.lk-pack:has(input:checked) .lk-pack__tick { display: block; }

.lk-readout {
    background: var(--ink-deep); color: var(--cream); border-radius: var(--r);
    padding: 1.6rem 1.5rem; text-align: center;
    border: 1px solid rgba(201, 162, 74, .35);
}
.lk-readout__row { display: flex; align-items: baseline; justify-content: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .35rem; }
.lk-readout__total { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.2rem); font-weight: 700; line-height: 1; color: #fff; }
.lk-readout__was { color: #b9c2d4; text-decoration: line-through; font-size: 1.05rem; }
.lk-readout__save { background: var(--gold); color: var(--ink-deep); font-weight: 700; font-size: .92rem; padding: .22rem .7rem; border-radius: 999px; }
.lk-readout__meta { color: #c8d0e0; font-size: .95rem; margin-bottom: 1.2rem; }
.lk-readout .lk-btn { margin-bottom: .9rem; }
.lk-readout__fine { font-size: .87rem; color: #b9c2d4; margin: 0; }
.lk-readout__fine span { white-space: nowrap; }
.lk-readout__fine span + span::before { content: "\00b7"; margin: 0 .5rem; color: var(--gold); }

/* --- trust strip ---------------------------------------------------------- */

.lk-standards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.lk-standards li {
    background: var(--card); border: 1px solid var(--rule); border-radius: var(--r-sm);
    padding: 1rem .8rem; text-align: center; font-size: .88rem; font-weight: 600;
}
.lk-standards b { display: block; font-family: var(--serif); font-size: 1.02rem; color: var(--gold-text); margin-bottom: .15rem; }

/* --- generic sections ----------------------------------------------------- */

.lk-sec { padding: 3.2rem 0; }
.lk-sec--tint { background: var(--paper-2); border-block: 1px solid var(--rule); }
.lk-sec--ink { background: var(--ink-deep); color: var(--cream); }
.lk-sec--ink h2, .lk-sec--ink h3 { color: #fff; }
.lk-sec--ink a { color: var(--gold); }
.lk-sec__title { text-align: center; margin-bottom: 2rem; }
.lk-sec__title p { color: var(--muted); max-width: 60ch; margin-inline: auto; }
.lk-sec--ink .lk-sec__title p { color: #c8d0e0; }

.lk-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lk-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.lk-card { background: var(--card); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.6rem 1.4rem; }
.lk-card h3 { color: var(--ink); }
.lk-card__num { font-family: var(--serif); font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: .5rem; }
.lk-card p:last-child { margin-bottom: 0; }

/* --- spec table + callouts ------------------------------------------------ */

.lk-spec { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; }
.lk-spec th, .lk-spec td { text-align: left; padding: .85rem 1.15rem; border-bottom: 1px solid var(--rule); font-size: .98rem; vertical-align: top; }
.lk-spec th { width: 34%; font-family: var(--sans); font-weight: 700; color: var(--gold-text); background: var(--gold-tint); }
.lk-spec tr:last-child th, .lk-spec tr:last-child td { border-bottom: 0; }
.lk-scroll { overflow-x: auto; }

.lk-callout {
    background: var(--card); border: 2px solid var(--gold-line); border-radius: var(--r);
    padding: 1.7rem 1.6rem; position: relative;
}
.lk-callout h2, .lk-callout h3 { font-size: 1.1rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-text); font-family: var(--sans); font-weight: 700; }
.lk-callout p:last-child { margin-bottom: 0; }
.lk-callout--ink { background: var(--ink-deep); border-color: rgba(201, 162, 74, .4); color: var(--cream); }
.lk-callout--ink h2, .lk-callout--ink h3 { color: var(--gold); }

.lk-keep { list-style: none; margin: 0; padding: 0; }
.lk-keep li { position: relative; padding-left: 2rem; margin-bottom: .8rem; }
.lk-keep li::before {
    content: "\2713"; position: absolute; left: 0; top: -.05rem;
    width: 1.35rem; height: 1.35rem; display: grid; place-content: center;
    background: var(--gold); color: var(--ink-deep); border-radius: 50%; font-size: .78rem; font-weight: 700;
}
.lk-keep li:last-child { margin-bottom: 0; }

/* --- prose ---------------------------------------------------------------- */

.lk-prose h2 { margin-top: 2.4rem; }
.lk-prose h3 { margin-top: 1.8rem; }
.lk-prose > h2:first-child, .lk-prose > h3:first-child { margin-top: 0; }
.lk-prose ul, .lk-prose ol { margin: 0 0 1.1em; padding-left: 1.35rem; }
.lk-prose li { margin-bottom: .45rem; }
.lk-cite { font-size: .72em; vertical-align: super; line-height: 0; font-weight: 700; }
.lk-cite a { text-decoration: none; }

.lk-refs { list-style: none; counter-reset: r; margin: 0; padding: 0; font-size: .93rem; }
.lk-refs li { counter-increment: r; padding-left: 2.1rem; position: relative; margin-bottom: .7rem; color: var(--muted); }
.lk-refs li::before {
    content: counter(r) "."; position: absolute; left: 0; top: 0;
    font-weight: 700; color: var(--gold-text); font-family: var(--serif);
}
.lk-refs a { word-break: break-word; }

.lk-byline { font-size: .92rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: .9rem; margin-bottom: 1.6rem; }
.lk-updated { font-size: .86rem; letter-spacing: .05em; color: var(--gold-text); font-weight: 700; text-transform: uppercase; }
.lk-crumbs { font-size: .87rem; color: var(--muted); padding: 1.2rem 0 0; }
.lk-crumbs a { color: var(--muted); }

/* --- supplement facts panel ---------------------------------------------- */

.lk-facts {
    background: #fffefa; border: 3px solid var(--ink); border-radius: 6px;
    padding: 1.1rem 1.2rem 1.3rem; max-width: 460px; font-family: var(--sans);
}
.lk-facts__hd { font-family: var(--serif); font-size: 1.85rem; font-weight: 700; line-height: 1; margin: 0 0 .35rem; }
.lk-facts hr { border: 0; border-top: 1px solid var(--ink); margin: .35rem 0; }
.lk-facts .lk-facts__rule-lg { border-top: 9px solid var(--ink); }
.lk-facts .lk-facts__rule-md { border-top: 4px solid var(--ink); }
.lk-facts p { margin: 0; font-size: .92rem; }
.lk-facts table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.lk-facts th, .lk-facts td { padding: .3rem 0; border-bottom: 1px solid #cfc7b4; text-align: left; }
.lk-facts td:last-child, .lk-facts th:last-child { text-align: right; white-space: nowrap; }
.lk-facts tbody tr:last-child th, .lk-facts tbody tr:last-child td { border-bottom: 0; }
.lk-facts__group { font-weight: 700; color: var(--gold-text); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; padding-top: .6rem; }
.lk-facts__note { font-size: .8rem; color: var(--muted); margin-top: .5rem; }

/* --- reviews -------------------------------------------------------------- */

.lk-score { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: center; }
.lk-score__big { text-align: center; }
.lk-score__num { font-family: var(--serif); font-size: 4.2rem; font-weight: 700; line-height: 1; }
.lk-bars { list-style: none; margin: 0; padding: 0; }
.lk-bars li { display: grid; grid-template-columns: 62px 1fr 48px; align-items: center; gap: .7rem; margin-bottom: .45rem; font-size: .9rem; }
.lk-bars__track { background: var(--paper-2); border-radius: 999px; height: 11px; overflow: hidden; border: 1px solid var(--rule); }
.lk-bars__fill { display: block; height: 100%; background: var(--gold); }

.lk-stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.lk-stats b { display: block; font-family: var(--serif); font-size: 2.15rem; font-weight: 700; line-height: 1.05; color: var(--gold); }
.lk-stats span { font-size: .85rem; color: #c8d0e0; }

.lk-wall { columns: 3 300px; column-gap: 1.2rem; }
.lk-rev { break-inside: avoid; background: var(--card); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.3rem 1.25rem; margin-bottom: 1.2rem; }
.lk-rev__top { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; margin-bottom: .5rem; }
.lk-rev__who { font-weight: 700; font-family: var(--serif); font-size: 1.05rem; }
.lk-rev__where { display: block; font-size: .82rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.lk-rev__stars { color: var(--gold); letter-spacing: .1em; font-size: .95rem; white-space: nowrap; }
.lk-rev p { font-size: .96rem; margin-bottom: .7rem; }
.lk-rev__tag { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--jade); }
.lk-rev__tag::before { content: "\2713"; margin-right: .3rem; }

.lk-themes { list-style: none; margin: 0; padding: 0; }
.lk-themes li { display: grid; grid-template-columns: 1fr 58px; gap: .8rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--rule); }
.lk-themes b { font-weight: 700; text-align: right; color: var(--gold-text); }

/* --- steps + faq ---------------------------------------------------------- */

.lk-steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lk-steps li { counter-increment: s; background: var(--card); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.5rem 1.3rem; }
.lk-steps li::before {
    content: counter(s); display: grid; place-content: center;
    width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--gold-tint);
    color: var(--gold-text); font-family: var(--serif); font-weight: 700; font-size: 1.2rem; margin-bottom: .8rem;
    border: 1px solid var(--gold-line);
}
.lk-steps h3 { font-size: 1.1rem; }
.lk-steps p { margin-bottom: 0; font-size: .96rem; }

.lk-qa { border-top: 1px solid var(--rule); }
.lk-qa details { border-bottom: 1px solid var(--rule); }
.lk-qa summary {
    cursor: pointer; list-style: none; padding: 1.05rem 2.4rem 1.05rem 0; position: relative;
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
}
.lk-qa summary::-webkit-details-marker { display: none; }
.lk-qa summary::after {
    content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; color: var(--orange); font-family: var(--sans); line-height: 1;
}
.lk-qa details[open] summary::after { content: "\2212"; }
.lk-qa__a { padding: 0 2.4rem 1.15rem 0; }
.lk-qa__a p:last-child { margin-bottom: 0; }
.lk-qa__group { margin-bottom: 2.4rem; }
.lk-qa__group h2 { font-size: 1.5rem; }

/* --- guarantee band ------------------------------------------------------- */

.lk-promise { display: grid; grid-template-columns: 190px 1fr; gap: 2rem; align-items: center; }
.lk-promise__seal { text-align: center; }
.lk-promise__seal img { width: 180px; }
.lk-promise p:last-child { margin-bottom: 0; }

/* --- comparison ----------------------------------------------------------- */

.lk-cmp { width: 100%; border-collapse: collapse; background: var(--card); font-size: .96rem; }
.lk-cmp th, .lk-cmp td { padding: .8rem 1rem; border: 1px solid var(--rule); text-align: left; }
.lk-cmp thead th { background: var(--ink-deep); color: var(--cream); font-family: var(--serif); }
.lk-cmp tbody th { font-weight: 600; background: var(--gold-tint); width: 30%; }

/* --- sticky dock (revealed) ---------------------------------------------- */

.lk-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    background: var(--card); border-top: 3px solid var(--gold);
    box-shadow: 0 -8px 26px rgba(22, 35, 63, .16);
    transform: translateY(110%); opacity: 0; visibility: hidden;
    transition: transform .26s ease, opacity .26s ease, visibility 0s linear .26s;
}
.lk-dock[hidden] { display: block; }
.lk-dock.is-up { transform: none; opacity: 1; visibility: visible; transition: transform .26s ease, opacity .26s ease, visibility 0s; }
.lk-dock__in { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.lk-dock__txt { margin: 0; font-size: .9rem; line-height: 1.35; }
.lk-dock__txt strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.lk-dock__txt span { color: var(--muted); }
.lk-dock__price { margin: 0 0 0 auto; text-align: right; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.lk-dock__price small { display: block; font-family: var(--sans); font-size: .78rem; font-weight: 400; color: var(--muted); }
.lk-foot--dock { padding-bottom: 96px; }

/* --- footer --------------------------------------------------------------- */

.lk-foot { background: var(--ink-deep); color: #c8d0e0; padding: 3rem 0 2rem; margin-top: 0; font-size: .93rem; }
.lk-foot__top { display: grid; grid-template-columns: 1.15fr 2fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(201, 162, 74, .3); }
.lk-foot__logo { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: #fff; display: block; margin-bottom: .7rem; }
.lk-foot__logo em { font-style: normal; color: var(--gold); margin-left: .22em; }
.lk-foot__addr { line-height: 1.7; }
.lk-foot__addr strong { color: var(--cream); }
.lk-foot__pay { font-size: .84rem; color: #97a1b6; }
.lk-foot a { color: var(--gold); }
.lk-foot a:hover { color: #fff; }
.lk-foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.lk-foot__cols h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-family: var(--sans); }
.lk-foot__cols ul { list-style: none; margin: 0; padding: 0; }
.lk-foot__cols li { margin-bottom: .5rem; }
.lk-foot__legal { padding-top: 1.6rem; font-size: .84rem; color: #97a1b6; }
.lk-foot__legal strong { color: var(--cream); }
.lk-foot__mark { color: #7d879c; }

/* --- glossary + contact form --------------------------------------------- */

.lk-gloss { margin: 0 0 1.2rem; }
.lk-gloss dt { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; margin-top: 1rem; }
.lk-gloss dd { margin: .2rem 0 0; color: var(--muted); }

.lk-form { background: var(--card); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.4rem 1.3rem; }
.lk-form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .3rem; }
.lk-form input, .lk-form textarea {
    width: 100%; font: inherit; padding: .65rem .8rem; color: var(--ink);
    background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-sm);
}
.lk-form p:last-child { margin-bottom: 0; }

/* --- 404 ------------------------------------------------------------------ */

.lk-lost { text-align: center; padding: 5rem 0; }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 980px) {
    .lk-packs { grid-template-columns: 1fr; gap: 1.4rem; }
    .lk-pack__face { display: grid; grid-template-columns: 124px 1fr; gap: 1.1rem; text-align: left; align-items: center; padding: 1.3rem 1.1rem; }
    .lk-pack__medal { margin: 0; }
    .lk-pack__lines { grid-column: 1 / -1; }
    .lk-pack__flag { left: auto; right: 1rem; transform: none; }
    .lk-grid3, .lk-steps, .lk-standards { grid-template-columns: repeat(2, 1fr); }
    .lk-stats { grid-template-columns: repeat(2, 1fr); }
    .lk-score, .lk-promise, .lk-foot__top { grid-template-columns: 1fr; gap: 1.4rem; }
    .lk-wall { columns: 2 280px; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .lk-burger { display: block; }
    .lk-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: .2rem;
        background: var(--card); border-bottom: 3px solid var(--gold);
        box-shadow: var(--shadow); padding: .8rem 1.25rem 1.2rem; margin: 0;
        transform: translateY(-14px); opacity: 0; visibility: hidden;
        transition: transform .2s ease, opacity .2s ease, visibility 0s linear .2s;
    }
    .lk-nav.is-open { transform: none; opacity: 1; visibility: visible; transition: transform .2s ease, opacity .2s ease, visibility 0s; }
    .lk-nav ul { flex-direction: column; gap: 0; }
    .lk-nav li { border-bottom: 1px solid var(--rule); }
    .lk-nav a { display: block; padding: .85rem 0; border-bottom: 0; }
    .lk-nav__cta { margin-top: .9rem; justify-content: center; }
    .lk-grid3, .lk-grid2, .lk-steps, .lk-stats, .lk-standards { grid-template-columns: 1fr; }
    .lk-wall { columns: 1; }
    .lk-spec th { width: 42%; }
    .lk-dock__in { flex-wrap: wrap; padding: .6rem 0; }
    .lk-dock__txt { font-size: .84rem; }
    .lk-dock__price { font-size: 1.25rem; }
    .lk-dock__in .lk-btn { width: 100%; }
    .lk-foot--dock { padding-bottom: 150px; }
    .lk-hero { padding-top: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition-duration: .01ms !important; }
}
