
.lgs-home { width: 100%; padding: 8px 0 40px; }
.lh-section { padding: 28px 0; }
.lh-head { margin-bottom: 30px; }
.lgs-home .eyebrow {
    font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--amber); margin: 0 0 8px;
}
.lh-title {
    font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700;
    letter-spacing: -.025em; margin: 0; color: var(--text);
}
.lh-head.is-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; } 
.lh-head.is-split > div { min-width: 0; }
.lh-head-link {
    color: var(--amber); font-weight: 600; font-size: .92rem; text-decoration: none;
    white-space: nowrap; padding-bottom: 9px;
}
.lh-head-link:hover { text-decoration: underline; }

.lh-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.lh-tile {
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    border-radius: var(--r); text-decoration: none;
    background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.lh-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.lh-tile-art {
    display: block; position: relative; aspect-ratio: 4 / 3;
    background-size: cover; background-position: center; background-color: var(--panel-3);
}
.lh-tile-art.is-blank { background-image: var(--grad-violet); }
.lh-tile-badge {
    position: absolute; left: 14px; bottom: -16px; width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--tile-hue, var(--amber)); color: var(--on-amber);
    border: 2px solid var(--panel);
}
.lh-tile-badge svg { width: 16px; height: 16px; }
.lh-tile-body { display: flex; flex-direction: column; gap: 3px; padding: 26px 18px 20px; }
.lh-tile-group { font-size: .72rem; font-weight: 600; color: var(--text-mute); }
.lh-tile-name { font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; letter-spacing: -.015em; color: var(--text); line-height: 1.25; }

.lh-props { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.lh-prop {
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 24px; border-radius: var(--r); text-decoration: none;
    background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.lh-prop:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.lh-prop-ico {
    display: flex; align-items: center; justify-content: center; width: 46px; height: 46px;
    border-radius: 14px; margin-bottom: 6px;
    background: color-mix(in srgb, var(--prop-hue, var(--amber)) 12%, transparent);
    color: var(--prop-hue, var(--amber));
}
.lh-prop-ico svg { width: 22px; height: 22px; }
.lh-prop-tag {
    align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--prop-hue, var(--amber));
}
.lh-prop-title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; margin: 2px 0 0; color: var(--text); line-height: 1.25; }
.lh-prop-body { margin: 0; color: var(--text-dim); font-size: .92rem; line-height: 1.6; }
.lh-prop-link { margin-top: auto; padding-top: 6px; color: var(--prop-hue, var(--amber)); font-weight: 600; font-size: .9rem; }
.lh-today-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.lh-today-card {
    display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
    transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.lh-today-card:hover { transform: translateY(-3px); border-color: var(--amber-line); box-shadow: var(--shadow-glow); }
.lh-today-img {
    position: relative; display: flex; align-items: flex-start; justify-content: flex-start;
    width: 100%; aspect-ratio: 16 / 9; background-size: cover; background-position: center;
}
.lh-today-img.is-empty { background: linear-gradient(150deg, var(--amber-soft) 0%, var(--header-bg) 100%); align-items: center; justify-content: center; }
.lh-today-glyph { font-size: 2.4rem; opacity: .7; }
.lh-today-badge {
    position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10px;
    letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--on-amber);
    background: var(--amber); padding: 4px 10px; border-radius: 999px;
}
.lh-today-body { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; flex: 1; }
.lh-today-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); line-height: 1.15; }
.lh-today-when { font-size: .82rem; font-weight: 600; color: var(--text-dim); }
.lh-today-desc { font-size: .9rem; color: var(--text-dim); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lh-today-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.lh-today-price { font-size: .9rem; font-weight: 700; color: var(--amber); background: var(--amber-soft); border: 1px solid var(--amber-line); padding: 3px 10px; border-radius: 999px; }
.lh-today-link { font-size: .85rem; font-weight: 600; color: var(--amber); }

.lh-visit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lh-hours, .lh-where { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow); }
.lh-card-title { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin: 0 0 18px; }
.lh-hours-list { list-style: none; padding: 0; margin: 0; }
.lh-hours-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.lh-hours-row:last-child { border-bottom: none; }
.lh-hours-row.today .lh-hours-day { color: var(--amber); }
.lh-hours-day { color: var(--text-dim); }
.lh-hours-time { font-family: var(--font-mono); font-size: 13px; color: var(--text); }
.lh-addr { color: var(--text-dim); line-height: 1.6; margin: 0 0 12px; }
.lh-w3w { margin: 0 0 16px; }
.lh-w3w a { font-family: var(--font-mono); font-size: 13px; }
.lh-contact { display: flex; flex-direction: column; gap: 8px; }
.lh-contact-row { color: var(--text); text-decoration: none; font-family: var(--font-mono); font-size: 14px; }
.lh-contact-row:hover { color: var(--amber); }
.lh-cta {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 42%); align-items: center;
    padding: 44px 40px; border-radius: var(--r-lg); position: relative; overflow: hidden;
    border: 1px solid var(--amber-line);
    background:
        var(--pb-cta-image, url("/themes/nightfall/seed/cta.jpg")) center / cover no-repeat,
        var(--pb-cta-bg, #150F2C);
}

.lh-cta > * { position: relative; z-index: 1; }
.lh-cta-copy { grid-column: 1; }
.lh-cta-title { font-family: var(--font-display); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; margin: 0; color: var(--text); }
.lh-cta-sub { margin: 12px 0 0; color: var(--text-dim); max-width: 40ch; }
.lh-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; grid-column: 1; margin-top: 24px; }
.lh-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 24px; border-radius: 999px; font-weight: 600; text-decoration: none;
    border: 1px solid var(--line-strong); background: var(--panel); color: var(--text);
    transition: all .15s var(--ease); white-space: nowrap;
}
.lh-btn:hover { border-color: var(--amber); color: var(--amber); }
.lh-btn.primary { background: var(--amber); color: var(--on-amber); border-color: var(--amber); box-shadow: 0 8px 18px -8px var(--btn-glow); }
.lh-btn.primary:hover { background: var(--amber-bright); border-color: var(--amber-bright); color: var(--on-amber); }
.lh-cta .lh-btn { background: rgba(3,4,6,.46); color: var(--text); border-color: rgba(242,244,250,.30); }
.lh-cta .lh-btn:hover { background: rgba(3,4,6,.70); color: var(--amber); border-color: var(--amber); }
.lh-cta .lh-btn.primary { background: var(--amber); color: var(--on-amber); border-color: var(--amber); }
.lh-cta .lh-btn.primary:hover { background: var(--amber-bright); border-color: var(--amber-bright); }

@media (max-width: 820px) {
    .lh-cta { grid-template-columns: 1fr; padding: 32px 26px; }
}
@media (max-width: 760px) {
    .lh-visit { grid-template-columns: 1fr; }
    .lh-cta { grid-template-columns: 1fr; }
}

.today-events { padding: 48px 0 8px; }
.te-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.te-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; color: var(--text); margin: 0; }
.te-all { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--amber); text-decoration: none; white-space: nowrap; }
.te-all:hover { color: var(--amber-bright); }

.te-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
@media (min-width: 992px)  { .te-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .te-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.lgs-theme .te-card {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
    text-decoration: none; color: var(--text);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.lgs-theme .te-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--amber-line); }
.te-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.te-body { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px 22px; }
.te-time { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--amber); letter-spacing: .04em; }
.te-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 0; color: var(--text); }
.te-price { font-size: 14px; color: var(--text-dim); }

.lh-usps { max-width: var(--maxw); margin: 0 auto; padding: 34px 24px 6px; }
.lh-usps-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lh-usp { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lh-usp-ico { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: none; color: var(--amber); }
.lh-usp-ico svg { width: 26px; height: 26px; }
.lh-usp-text { display: flex; flex-direction: column; min-width: 0; }
.lh-usp-title { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--amber); }
.lh-usp-sub { font-size: .9rem; color: var(--text-dim); }
.lh-usps-inner:has(> :last-child:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }
.lh-usps-inner:has(> :last-child:nth-child(2)) { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .lh-usps-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lh-usps-inner { grid-template-columns: 1fr; } }
