/* ==========================================================================
   LoveToRead — site components ("Bedtime, bound")           rebrand 2026-09-02
   Loaded on every page after the page's own CSS and before tokens.css.
   Everything here is prefixed lt- so it never collides with the old files.
   The header/footer hooks (.header, .mobile-nav, .user-menu …) are the ids and
   classes assets/js/header.js expects; their open state is aria-hidden="false".
   ========================================================================== */

/* ---------- layout ---------- */
.lt-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.lt-wrap--narrow { max-width: 820px; }
.lt-sec { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.lt-sec--tight { padding: clamp(28px, 5vw, 56px) 0; }
.lt-sec--oat { background: var(--oat); }
.lt-sec--night { background: var(--night); color: var(--on-night); }
.lt-sec--night h1, .lt-sec--night h2, .lt-sec--night h3 { color: var(--on-night); }
.lt-sec--night .lt-eyebrow { color: var(--marigold); }
.lt-sec--night .lt-muted, .lt-sec--night .lt-lede { color: var(--on-night-muted); }
.lt-sec--night a { color: #9FE0E6; }
.lt-sec--night::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .9;
    background-image: radial-gradient(circle at 12% 18%, rgba(255,255,255,.10) 1px, transparent 1.6px), radial-gradient(circle at 72% 62%, rgba(255,255,255,.08) 1px, transparent 1.6px), radial-gradient(circle at 38% 84%, rgba(255,255,255,.08) 1px, transparent 1.6px), radial-gradient(circle at 88% 22%, rgba(255,177,0,.35) 1.2px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 300px 300px, 520px 520px; }
.lt-sec--night > * { position: relative; }
.lt-endpaper { background-color: var(--oat);
    background-image: radial-gradient(circle, rgba(34,38,58,.10) 1px, transparent 1.4px), radial-gradient(circle, rgba(34,38,58,.06) 1px, transparent 1.4px);
    background-size: 26px 26px, 26px 26px; background-position: 0 0, 13px 13px; }
.lt-sec-head { display: grid; gap: 10px; margin-bottom: clamp(24px, 4vw, 40px); max-width: 720px; }
.lt-sec-head--center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }
.lt-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lagoon); }
.lt-lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; line-height: 1.55; }
.lt-muted { color: var(--muted); }
.lt-small { font-size: .9rem; }
.lt-center { text-align: center; }
.lt-grid { display: grid; gap: clamp(14px, 2.4vw, 22px); }
.lt-g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lt-g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lt-g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lt-grid > *, .lt-stack > * { min-width: 0; }
@media (max-width: 900px) { .lt-g3, .lt-g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .lt-g2, .lt-g3, .lt-g4 { grid-template-columns: 1fr; } }
.lt-stack { display: grid; gap: 18px; }
.lt-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lt-hide-mobile { display: initial; }
.lt-hide-desktop { display: none; }
@media (max-width: 760px) { .lt-hide-mobile { display: none !important; } .lt-hide-desktop { display: initial; } }
h1.lt-h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
h2.lt-h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3.lt-h3 { font-size: 1.28rem; }
h1.lt-h1, h2.lt-h2, h3.lt-h3, .lt-sec-head > *, .lt-hero__copy > *, .lt-lede, .lt-eyebrow { margin: 0; }
.lt-prose { max-width: 66ch; line-height: 1.6; }
.lt-prose p + p { margin-top: .9em; }

/* ---------- buttons ---------- */
.lt-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: var(--pill); border: 2px solid transparent; font: 700 1rem/1 var(--body); text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap; }
.lt-btn:hover { transform: translateY(-1px); }
.lt-btn:active { transform: translateY(0); }
.lt-btn--primary { background: var(--lagoon); color: #fff; box-shadow: 0 6px 16px -8px rgba(14,124,134,.6); }
.lt-btn--primary:hover { background: var(--lagoon-deep); color: #fff; }
.lt-btn--ink { background: var(--ink); color: var(--paper); }
.lt-btn--ink:hover { background: #10131F; color: var(--paper); }
.lt-btn--sun { background: var(--marigold); color: var(--ink); }
.lt-btn--sun:hover { background: #FFC233; color: var(--ink); }
.lt-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.lt-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.lt-btn--light { background: rgba(255,255,255,.12); color: var(--on-night); border-color: rgba(255,255,255,.35); }
.lt-btn--light:hover { background: rgba(255,255,255,.2); color: #fff; }
.lt-btn--lg { padding: 16px 28px; font-size: 1.08rem; }
.lt-btn--sm { padding: 9px 16px; font-size: .9rem; }
.lt-btn--block { width: 100%; }
.lt-btn svg { width: 18px; height: 18px; }
.lt-textlink { font-weight: 700; color: var(--lagoon); text-decoration: none; border-bottom: 2px solid var(--lagoon-tint); }
.lt-textlink:hover { border-color: var(--lagoon); }

/* ---------- header ---------- */
/* no backdrop-filter here: it would turn the header into the containing block for the fixed drawer and overlay inside it */
.header.lt-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--rule); }
.header.lt-header.scrolled { box-shadow: 0 6px 20px -16px rgba(34,38,58,.3); }
.lt-header__in { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-h); display: flex; align-items: center; gap: 22px; }
.lt-brand { display: inline-flex; align-items: baseline; text-decoration: none; font-family: var(--script); font-size: 2rem; color: var(--ink); letter-spacing: .005em; line-height: 1; transform: rotate(-2deg); transform-origin: left bottom; padding-right: 6px; }
@media (max-width: 960px) { .lt-brand { font-size: 1.7rem; } }
.lt-brand:hover { color: var(--lagoon-deep); }
@keyframes lt-beat { 0%, 100% { transform: translateY(1px) scale(1); } 40% { transform: translateY(1px) scale(1.18); } }
.lt-nav { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.lt-nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border-radius: var(--pill); color: var(--ink-soft); font-weight: 700; font-size: .95rem; text-decoration: none; }
.lt-nav__link:hover, .lt-nav__link.active { color: var(--ink); background: var(--oat); }
.lt-nav__link svg { width: 14px; height: 14px; opacity: .6; }
.lt-header__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.lt-header__signin { font-weight: 700; color: var(--ink-soft); text-decoration: none; padding: 9px 12px; border-radius: var(--pill); }
.lt-header__signin:hover { background: var(--oat); color: var(--ink); }
/* mega menu */
.lt-mega { position: relative; }
.lt-mega__panel { position: absolute; top: calc(100% + 10px); left: -12px; width: min(980px, calc(100vw - 40px)); background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); padding: 22px; display: grid; grid-template-columns: 250px 1.15fr 1fr; gap: 22px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility 0s .18s; }
.lt-mega__tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 10px; }
.lt-mega__item { display: flex; align-items: center; gap: 10px; padding: 6px 8px 6px 6px; border-radius: 12px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .92rem; line-height: 1.2; }
.lt-mega__item img { width: 44px; height: 44px; border-radius: 4px 8px 8px 4px; object-fit: cover; flex: 0 0 44px; box-shadow: 0 2px 6px -2px rgba(34,38,58,.4); background: var(--oat); }
.lt-mega__item:hover { background: var(--oat); color: var(--lagoon-deep); }
.lt-mega__giftico { width: 44px; height: 44px; border-radius: 8px; background: var(--marigold-tint); color: var(--ink); display: grid; place-items: center; flex: 0 0 44px; }
.lt-mega:hover .lt-mega__panel, .lt-mega:focus-within .lt-mega__panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.lt-mega__panel::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
.lt-mega__title { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.lt-mega__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.lt-mega__list a { display: block; padding: 7px 10px; border-radius: 10px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: .94rem; }
.lt-mega__list a:hover { background: var(--oat); color: var(--lagoon-deep); }
.lt-mega__feature { grid-column: 1; background: var(--night); color: var(--on-night); border-radius: 14px; padding: 18px; display: grid; gap: 8px; align-content: start; }
.lt-mega__feature img { width: 100%; height: 130px; object-fit: cover; border-radius: 10px; display: block; }
.lt-mega__feature b { font-family: var(--display); font-weight: 400; font-size: 1.05rem; }
.lt-mega__feature a { color: #9FE0E6; font-weight: 700; text-decoration: none; }
/* user menu (ids used by header.js) */
.user-menu { position: relative; }
.user-menu-button { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: var(--pill); border: 1px solid var(--rule); background: var(--card); cursor: pointer; font: 700 .92rem var(--body); color: var(--ink); }
.user-menu-button .lt-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--marigold); color: var(--ink); display: grid; place-items: center; font-family: var(--display); font-size: .95rem; }
.user-menu-arrow { font-size: .6rem; color: var(--muted); }
.user-menu-dropdown { position: absolute; right: 0; top: calc(100% + 8px); min-width: 210px; background: var(--card); border: 1px solid var(--rule); border-radius: 14px; box-shadow: var(--shadow-lift); padding: 8px; display: grid; gap: 2px; z-index: 70; }
.user-menu-dropdown[aria-hidden="true"] { display: none; }
.user-menu-dropdown .dropdown-item { display: block; width: 100%; text-align: left; padding: 10px 12px; border-radius: 10px; color: var(--ink); text-decoration: none; background: none; border: 0; font: 600 .94rem var(--body); cursor: pointer; }
.user-menu-dropdown .dropdown-item:hover { background: var(--oat); }
.user-menu-dropdown .dropdown-divider { border: 0; border-top: 1px solid var(--rule); margin: 6px 4px; }
/* burger + drawer (ids used by header.js) */
.mobile-menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; align-items: center; margin-left: auto; border-radius: 12px; }
.mobile-menu-button:hover { background: var(--oat); }
.hamburger-line { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(27,35,64,.45); z-index: 80; }
.mobile-nav-overlay[aria-hidden="true"] { display: none; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--paper); z-index: 90; box-shadow: var(--shadow-lift); overflow-y: auto; transform: translateX(0); transition: transform .25s ease; }
.mobile-nav[aria-hidden="true"] { display: none; }
html { overflow-x: clip; }
.mobile-nav-header { display: flex; justify-content: flex-end; padding: 14px 14px 0; }
.mobile-nav-close { width: 40px; height: 40px; border: 0; background: var(--oat); border-radius: 50%; cursor: pointer; position: relative; }
.mobile-nav-close .close-line { position: absolute; left: 11px; top: 19px; width: 18px; height: 2.5px; background: var(--ink); border-radius: 2px; }
.mobile-nav-close .close-line:first-child { transform: rotate(45deg); }
.mobile-nav-close .close-line:last-child { transform: rotate(-45deg); }
.mobile-nav-content { padding: 6px 18px 30px; display: grid; gap: 4px; }
.mobile-nav-links { display: grid; gap: 2px; }
.mobile-nav-link { display: block; padding: 12px 10px; border-radius: 12px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.05rem; background: none; border: 0; text-align: left; font-family: inherit; cursor: pointer; }
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--oat); }
.mobile-nav-link.sub { font-weight: 600; font-size: .98rem; padding: 8px 10px; color: var(--ink-soft); display: flex; align-items: center; gap: 12px; }
.mobile-nav-link.sub img { width: 40px; height: 40px; border-radius: 4px 7px 7px 4px; object-fit: cover; flex: 0 0 40px; box-shadow: 0 2px 6px -2px rgba(34,38,58,.4); background: var(--oat); }
.mobile-nav-link.cta { background: var(--lagoon); color: #fff; text-align: center; margin: 4px 0 16px; padding: 14px 10px; }
.mobile-nav-header { display: flex; justify-content: flex-end; padding: 12px 14px 4px; }
.mobile-nav-divider { border: 0; border-top: 1px solid var(--rule); margin: 8px 0; }
.mobile-nav-group { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 12px 10px 4px; }
.mobile-user-info { display: flex; align-items: center; gap: 12px; padding: 12px 10px; }
.mobile-user-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--marigold); display: grid; place-items: center; font-family: var(--display); }
.mobile-user-name { display: block; font-weight: 700; }
.mobile-user-status { display: block; font-size: .82rem; color: var(--muted); }
@media (max-width: 960px) {
    .lt-nav, .lt-header__actions .lt-header__signin, .lt-header__actions .lt-btn, .lt-header__actions .user-menu { display: none; }
    .mobile-menu-button { display: flex; }
    .lt-header__in { height: 64px; }
    :root { --nav-h: 64px; }
}

/* ---------- hero ---------- */
.lt-hero { padding: clamp(28px, 5vw, 72px) 0 clamp(36px, 6vw, 80px); overflow: hidden; position: relative; }
.lt-hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; pointer-events: none; opacity: .9; background-image: radial-gradient(circle, rgba(34,38,58,.11) 1.3px, transparent 1.9px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%); mask-image: linear-gradient(90deg, transparent, #000 55%); }
.lt-hero > * { position: relative; }
.lt-hero__in { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.lt-hero__copy { display: grid; gap: 18px; }
.lt-hero__copy .lt-lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.lt-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.lt-hero__facts { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .92rem; color: var(--ink-soft); }
.lt-hero__facts span::before { content: "✓"; color: var(--moss); font-weight: 700; margin-right: 6px; }
.lt-hero__visual { position: relative; }
.lt-hero__visual img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-book); transform: rotate(1.2deg); }
@media (max-width: 860px) { .lt-hero__visual img { transform: none; } }
.lt-hero__plate { position: absolute; left: clamp(10px, 4%, 28px); bottom: -22px; width: min(300px, 78%); }
@media (max-width: 860px) {
    .lt-hero__in { grid-template-columns: 1fr; }
    .lt-hero__visual { margin-bottom: 30px; }
    .lt-hero__ctas .lt-btn { flex: 1 1 auto; }
}

/* ---------- bookplate, stamps, badges ---------- */
.lt-bookplate { position: relative; background: var(--card); border: 2px solid var(--ink); border-radius: 16px; padding: 14px 18px 12px; box-shadow: var(--shadow-book); }
.lt-bookplate::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--ink); border-radius: 11px; opacity: .35; pointer-events: none; }
.lt-bookplate__text { font-family: var(--hand); font-size: 1.4rem; line-height: 1.15; color: var(--ink); }
.lt-bookplate__sub { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.lt-bookplate__star { position: absolute; top: -13px; right: -10px; width: 28px; height: 28px; color: var(--marigold); filter: drop-shadow(0 1px 0 rgba(0,0,0,.15)); }
.lt-stamp { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 8px; border: 2px solid var(--ink); background: var(--marigold); color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transform: rotate(-2deg); }
.lt-stamp--rasp { background: var(--raspberry-tint); }
.lt-stamp--lagoon { background: var(--lagoon-tint); }
.lt-stamp--paper { background: var(--card); }
.lt-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--pill); background: var(--oat); color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.lt-badge--moss { background: var(--moss-tint); color: var(--moss); }
.lt-badge--sun { background: var(--marigold-tint); color: #7A5600; }
.lt-badge--rasp { background: var(--raspberry-tint); color: #9C2450; }
.lt-badge--lagoon { background: var(--lagoon-tint); color: var(--lagoon-deep); }

/* ---------- cards & covers ---------- */
.lt-card { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: clamp(18px, 2.4vw, 26px); box-shadow: var(--shadow-soft); }
.lt-card--flat { box-shadow: none; }
.lt-card--oat { background: var(--oat); border-color: transparent; }
.lt-card--night { background: var(--night-soft); border-color: rgba(255,255,255,.14); color: var(--on-night); }
.lt-card--night h3 { color: var(--on-night); }
.lt-card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.lt-card p { margin: 0; color: var(--ink-soft); }
.lt-card--night p { color: var(--on-night-muted); }
.lt-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-soft); }
.lt-card li + li { margin-top: 5px; }
.lt-card--icon { display: grid; gap: 10px; }
.lt-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--marigold-tint); color: var(--ink); display: grid; place-items: center; font-size: 1.1rem; }
.lt-icon--lagoon { background: var(--lagoon-tint); color: var(--lagoon-deep); }
.lt-icon--rasp { background: var(--raspberry-tint); color: #9C2450; }
.lt-cover { position: relative; aspect-ratio: 1 / 1; border-radius: 6px 12px 12px 6px; overflow: hidden; box-shadow: var(--shadow-book); background: var(--oat); }
.lt-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lt-cover::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 10px; background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(255,255,255,.12) 40%, rgba(0,0,0,.08)); pointer-events: none; }
.lt-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--oat); }
.lt-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lt-photo--4x3 { aspect-ratio: 4 / 3; }
.lt-photo--16x9 { aspect-ratio: 16 / 9; }
.lt-photo--sq { aspect-ratio: 1 / 1; }

/* ---------- occasions strip ---------- */
.lt-occasions { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.lt-occ { display: grid; gap: 10px; text-decoration: none; color: var(--ink); text-align: center; }
.lt-occ .lt-cover { transition: transform .2s ease; }
.lt-occ:hover .lt-cover { transform: translateY(-4px) rotate(-1deg); }
.lt-occ b { font-weight: 700; font-size: .95rem; }
.lt-occ span { display: block; font-size: .8rem; color: var(--muted); }
@media (max-width: 960px) { .lt-occasions { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) { .lt-occasions { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 4px var(--gutter) 12px; margin: 0 calc(-1 * var(--gutter)); scrollbar-width: none; } .lt-occasions::-webkit-scrollbar { display: none; } .lt-occ { flex: 0 0 150px; scroll-snap-align: start; } }

/* ---------- proof pairs ---------- */
/* ---- the likeness: one photo pinned to one page, and a chooser ---- */
.lt-like { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); grid-template-areas: "text visual" "people visual"; column-gap: clamp(28px, 5vw, 72px); row-gap: 18px; align-items: center; }
.lt-like > * { min-width: 0; }
.lt-like__text { grid-area: text; align-self: end; display: grid; gap: 10px; }
.lt-like__text .lt-h2, .lt-like__text .lt-lede { margin: 0; }
.lt-like__people-wrap { grid-area: people; align-self: start; }
.lt-like__people { display: grid; gap: 8px; max-width: 480px; }
.lt-like__person { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border: 2px solid transparent; border-radius: 16px; background: var(--card); cursor: pointer; text-align: left; font-family: inherit; color: var(--ink); box-shadow: var(--shadow-soft); transition: border-color .15s ease, transform .15s ease; }
.lt-like__person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.lt-like__person span { display: grid; line-height: 1.2; }
.lt-like__person b { font-size: .98rem; }
.lt-like__person small { font-size: .8rem; color: var(--muted); }
.lt-like__person:hover { transform: translateY(-1px); }
.lt-like__person.is-active { border-color: var(--ink); }
.lt-like__person.is-active small { color: var(--lagoon-deep); }
.lt-like__note { margin: 10px 0 0; }
.lt-like__visual { grid-area: visual; position: relative; padding: 0 0 52px 64px; box-sizing: border-box; }
.lt-like__page { margin: 0; position: relative; aspect-ratio: 4 / 5; border-radius: 8px 20px 20px 8px; overflow: hidden; box-shadow: var(--shadow-book); background: var(--oat-deep); }
.lt-like__page::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px; z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.26), rgba(0,0,0,.05) 60%, rgba(255,255,255,.12)); }
.lt-like__page img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }
.lt-like__style { position: absolute; top: 14px; right: 14px; z-index: 3; margin: 0; background: rgba(255,253,248,.94); color: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--pill); }
.lt-like__polaroid { position: absolute; left: 0; bottom: 0; width: min(46%, 250px); margin: 0; background: #fff; padding: 10px 10px 40px; border-radius: 4px; box-shadow: var(--shadow-lift); transform: rotate(-6deg); transform-origin: 50% 90%; z-index: 4; }
.lt-like__polaroid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: 2px; transition: opacity .3s ease; }
.lt-like__polaroid figcaption { position: absolute; left: 10px; right: 10px; bottom: 8px; font-size: 1.4rem; color: var(--ink-soft); text-align: center; line-height: 1; }
.lt-like__tape { position: absolute; top: -11px; left: 50%; width: 84px; height: 24px; transform: translateX(-50%) rotate(3deg); background: rgba(255,177,0,.55); border-radius: 2px; z-index: 5; }
.lt-like img.is-fading { opacity: 0; }
@media (max-width: 860px) {
    .lt-like { grid-template-columns: 1fr; grid-template-areas: "text" "visual" "people"; row-gap: 22px; }
    .lt-like__text { text-align: center; justify-items: center; }
    .lt-like__visual { width: 100%; max-width: min(400px, 100%); margin: 0 auto; padding: 0 0 38px 30px; }
    .lt-like__people { max-width: none; }
    .lt-like__people { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 4px; margin: 0 -4px; -webkit-overflow-scrolling: touch; }
    .lt-like__people::-webkit-scrollbar { display: none; }
    .lt-like__person { flex: 0 0 auto; padding: 8px 12px 8px 8px; }
    .lt-like__person img { width: 36px; height: 36px; }
    .lt-like__polaroid { width: 44%; padding: 8px 8px 32px; left: 6px; }
    .lt-like__polaroid figcaption { font-size: 1.15rem; }
    .lt-like__note { text-align: center; }
}

/* ---------- steps ---------- */
.lt-steps { counter-reset: lt; display: grid; gap: 16px; }
.lt-step { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.lt-step::before { counter-increment: lt; content: counter(lt); width: 44px; height: 44px; border-radius: 50%; background: var(--marigold); color: var(--ink); font-family: var(--display); font-size: 1.15rem; display: grid; place-items: center; }
.lt-step h3 { margin: 4px 0 6px; font-size: 1.2rem; }
.lt-step p { margin: 0; color: var(--ink-soft); }

/* ---------- styles grid ---------- */
.lt-styles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lt-style { display: grid; gap: 8px; text-decoration: none; color: var(--ink); }
.lt-style .lt-photo { aspect-ratio: 1 / 1; transition: transform .2s ease; }
.lt-style:hover .lt-photo { transform: translateY(-3px); }
.lt-style b { font-size: .95rem; }
.lt-style span { font-size: .8rem; color: var(--muted); }
@media (max-width: 760px) { .lt-styles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- reviews ---------- */
.lt-review { display: grid; gap: 10px; }
.lt-stars { color: var(--marigold); letter-spacing: 2px; font-size: 1rem; }
.lt-review q { font-size: 1.02rem; line-height: 1.5; quotes: "\201C" "\201D"; }
.lt-review cite { font-style: normal; font-size: .86rem; color: var(--muted); }

/* ---------- pricing ---------- */
.lt-price { position: relative; display: grid; gap: 10px; align-content: start; }
.lt-price--featured { border: 2px solid var(--ink); box-shadow: var(--shadow-book); }
.lt-price__tag { position: absolute; top: -14px; left: 20px; }
.lt-price__amt { font-family: var(--display); font-size: 2.6rem; line-height: 1; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.lt-price__amt small { font-family: var(--body); font-size: .92rem; color: var(--muted); font-weight: 400; }
.lt-price__was { font-size: .9rem; color: var(--muted); }
.lt-price ul { margin: 6px 0 0; padding-left: 18px; color: var(--ink-soft); }
.lt-price li + li { margin-top: 6px; }
.lt-price .lt-btn { margin-top: 8px; }

/* ---------- FAQ ---------- */
.lt-faq { display: grid; gap: 10px; }
.lt-faq details { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 0 18px; }
.lt-faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.lt-faq summary::-webkit-details-marker { display: none; }
.lt-faq summary::after { content: "+"; font-family: var(--display); font-size: 1.4rem; color: var(--lagoon); flex: 0 0 auto; }
.lt-faq details[open] summary::after { content: "–"; }
.lt-faq details p { margin: 0 0 16px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- rail ---------- */
.lt-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px var(--gutter) 16px; margin: 0 calc(-1 * var(--gutter)); scrollbar-width: none; }
.lt-rail::-webkit-scrollbar { display: none; }
.lt-rail > * { flex: 0 0 220px; scroll-snap-align: start; }
@media (max-width: 600px) { .lt-rail > * { flex-basis: 170px; } }

/* ---------- sticky mobile CTA ---------- */
.lt-sticky { display: none; }
@media (max-width: 760px) {
    .lt-sticky { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--rule); gap: 10px; align-items: center; }
    .lt-sticky .lt-btn { flex: 1; }
    .lt-sticky__price { font-size: .86rem; color: var(--ink-soft); line-height: 1.2; }
    .lt-sticky__price b { display: block; font-family: var(--display); font-size: 1.1rem; }
    body.lt-has-sticky { padding-bottom: 76px; }
}

/* ---------- forms ---------- */
.lt-field { display: grid; gap: 6px; }
.lt-field label { font-weight: 700; font-size: .92rem; }
.lt-input, .lt-select, .lt-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--rule); border-radius: 12px; background: var(--card); font: 400 1rem var(--body); color: var(--ink); }
.lt-input:focus, .lt-select:focus, .lt-textarea:focus { outline: none; border-color: var(--lagoon); box-shadow: 0 0 0 3px var(--lagoon-tint); }
.lt-textarea { min-height: 110px; resize: vertical; }
.lt-help { font-size: .84rem; color: var(--muted); }

/* ---------- callouts ---------- */
.lt-callout { border-left: 4px solid var(--marigold); background: var(--marigold-tint); padding: 14px 18px; border-radius: 0 12px 12px 0; }
.lt-callout--rasp { border-color: var(--raspberry); background: var(--raspberry-tint); }
.lt-callout--lagoon { border-color: var(--lagoon); background: var(--lagoon-tint); }
.lt-callout--moss { border-color: var(--moss); background: var(--moss-tint); }

/* ---------- footer ---------- */
.lt-footer { background: var(--night); color: var(--on-night); padding: clamp(40px, 6vw, 64px) 0 28px; position: relative; overflow: hidden; }
.lt-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 1px, transparent 1.6px), radial-gradient(circle at 70% 70%, rgba(255,255,255,.07) 1px, transparent 1.6px); background-size: 240px 240px, 300px 300px; }
.lt-footer > * { position: relative; }
.lt-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
.lt-footer__brand { display: grid; gap: 12px; align-content: start; }
.lt-footer__brand .lt-brand { color: var(--on-night); font-size: 2rem; }
.lt-footer__tag { color: var(--on-night-muted); max-width: 32ch; line-height: 1.5; }
.lt-footer__social { display: flex; gap: 12px; flex-wrap: wrap; }
.lt-footer__social a { color: var(--on-night-muted); font-size: .88rem; text-decoration: none; font-weight: 700; }
.lt-footer__social a:hover { color: #fff; }
.lt-footer h4 { margin: 0 0 12px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--marigold); }
.lt-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.lt-footer ul a { color: var(--on-night); text-decoration: none; font-size: .95rem; opacity: .9; }
.lt-footer ul a:hover { opacity: 1; color: #9FE0E6; }
.lt-footer__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; font-size: .86rem; color: var(--on-night-muted); }
.lt-footer__bottom a { color: var(--on-night-muted); text-decoration: none; }
.lt-footer__bottom a:hover { color: #fff; }
.lt-footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 900px) { .lt-footer__grid { grid-template-columns: 1fr 1fr; } .lt-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .lt-footer__grid { grid-template-columns: 1fr; } }

/* ---------- motion ---------- */
.lt-reveal { opacity: 0; transform: translateY(12px); animation: lt-rise .7s ease-out forwards; }
.lt-reveal:nth-child(2) { animation-delay: .08s; }
.lt-reveal:nth-child(3) { animation-delay: .16s; }
@keyframes lt-rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lt-reveal { animation: none; opacity: 1; transform: none; } .lt-btn, .lt-occ .lt-cover, .lt-style .lt-photo { transition: none; } }
