/* London Free Guide — home page styles. Built on tokens.css. Mobile-first. */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--lfg-black);
  color: var(--lfg-white);
  font-family: var(--lfg-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --lfg-accent: var(--lfg-red);
  --lfg-bar-bg: #141414;
  --shell: 1140px;
  --card-radius: 12px;
  --mcols: 2;
  --mcols-wide: 4;
}

.wrap { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 16px; }

.eyebrow { font-family: var(--lfg-font-hand); color: var(--lfg-white); font-size: 1.6rem; line-height: 1; display: block; }
.kicker { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; color: var(--lfg-white-50); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(14,14,14,.82);
  backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--lfg-white-08);
}
.nav-inner { display: flex; align-items: center; gap: 14px; height: 58px; }
.nav-inner > a:first-child { display: inline-flex; align-items: center; }
.pint-chip { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-weight: 600; font-size: .72rem; color: var(--lfg-white-50); border-left: 1px solid var(--lfg-white-15); padding-left: 12px; }
.pint-chip .pint-aside { color: var(--lfg-white-30); }
@media (max-width: 600px) { .pint-chip .pint-aside { display: none; } }

/* ---------- cheeky cookie consent ---------- */
.cookiebar {
  position: fixed; left: 16px; bottom: 16px; z-index: 80;
  width: min(380px, calc(100vw - 32px));
  background: #161616; border: 1px solid var(--lfg-white-15); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 16px 44px rgba(0,0,0,.5);
  display: flex; flex-direction: column; gap: 12px;
  animation: cookiein .35s ease both;
}
@keyframes cookiein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cookie-txt { font-size: .85rem; line-height: 1.5; color: var(--lfg-white-70); }
.cookie-ico { font-size: 1.05rem; margin-right: 4px; }
.cookie-btns { display: flex; align-items: center; gap: 12px; }
.cookie-yes { padding: .6rem 1.15rem; }
.cookie-min { font-weight: 600; font-size: .78rem; color: var(--lfg-white-50); }
.cookie-min:hover { color: var(--lfg-white); }
body.cookie-open .agent-fab { bottom: 96px; }
@media (max-width: 520px) {
  .cookiebar { left: 12px; right: 12px; bottom: 12px; width: auto; }
  body.cookie-open .agent-fab { display: none; }
}
.logo {
  font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .01em; font-size: 1.12rem; line-height: .9; white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: .12em;
}
.logo .free { color: var(--lfg-accent); margin-left: .28em; }
.logo .eye { width: .6em; height: .6em; border-radius: 50%; border: 2.5px solid var(--lfg-accent); display: inline-block; position: relative; top: .04em; flex-shrink: 0; }
.logo-img { height: 28px; width: auto; display: block; }
@media (max-width: 600px) { .logo-img { height: 22px; } }
.nav-links { display: none; }
.nav-spacer { flex: 1; }
.nav-login { display: none; font-weight: 600; font-size: .82rem; color: var(--lfg-white-70); }
.btn { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .76rem; background: var(--lfg-accent); color: #fff; padding: .55rem .95rem; border-radius: var(--lfg-radius-pill); white-space: nowrap; }
@media (max-width: 600px) { .btn { font-size: .7rem; letter-spacing: .02em; padding: .5rem .8rem; } }
.nav-burger { display: none; }
.nav-burger i { width: 20px; height: 2px; background: #fff; display: block; border-radius: 2px; }

/* mobile: swipeable strip of section links under the logo (news-app style) */
.nav-scroll {
  display: flex; gap: 20px; align-items: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 8px 16px 9px; scroll-snap-type: x proximity;
  border-bottom: 1px solid var(--lfg-white-08);
  background: rgba(14,14,14,.82); backdrop-filter: saturate(140%) blur(10px);
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%);
}
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-scroll a { flex: 0 0 auto; scroll-snap-align: start; font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .02em; color: var(--lfg-white-70); white-space: nowrap; }
.nav-scroll a:active { color: #fff; }
.nav-scroll a.nav-studio { color: var(--lfg-accent); font-weight: 700; }
.nav-scroll a.nav-studio:hover, .nav-scroll a.nav-studio:active { color: #fff; }

@media (min-width: 980px) {
  .nav-scroll { display: none; }
  .nav-links { display: flex; gap: 13px; align-items: center; margin-left: 12px; }
  .nav-links a { font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .02em; color: var(--lfg-white-70); white-space: nowrap; }
  .nav-links a:hover { color: #fff; }
}
@media (min-width: 1240px) {
  .nav-links { gap: 18px; }
  .nav-login { display: inline; }
}
/* external-link icon — subtle, inherits text colour */
.ext-ico { width: .72em; height: .72em; display: inline-block; vertical-align: -1px; margin-left: 4px; opacity: .9; }
.nav-links a.nav-studio { color: var(--lfg-accent); font-weight: 700; }
.nav-links a.nav-studio:hover { color: #fff; }
/* current page indicator */
.nav-links a.is-here { color: var(--lfg-white); position: relative; }
.nav-links a.is-here::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--lfg-accent); border-radius: 2px; }
.nav-links a.nav-studio.is-here { color: var(--lfg-accent); }
.nav-scroll a.is-here { color: var(--lfg-white); box-shadow: inset 0 -2px 0 var(--lfg-accent); padding-bottom: 2px; }
.nav-scroll a.nav-studio.is-here { color: var(--lfg-accent); }
.drawer-panel a.is-here { color: var(--lfg-accent); }
.drawer-panel a.nav-studio { color: var(--lfg-accent); font-weight: 700; }
.drawer-acc { text-align: left; background: none; border: 0; color: var(--lfg-white); font: inherit; font-weight: 600; font-size: 1.05rem; cursor: pointer; padding: 12px 0; min-height: 44px; display: flex; align-items: center; }

/* ---------- membership: nav control + magic-link popover ---------- */
.account { position: relative; display: inline-flex; align-items: center; gap: 10px; }
.account .nav-login { cursor: pointer; background: none; border: 0; font: inherit; font-weight: 600; font-size: .82rem; color: var(--lfg-white-70); }
.account .nav-login:hover { color: #fff; }
.nav-member { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; background: var(--lfg-white-08); border: 1px solid var(--lfg-white-15); color: var(--lfg-white); border-radius: var(--lfg-radius-pill); padding: 4px 12px 4px 4px; }
.nav-member:hover { border-color: var(--lfg-white-30); }
.nav-member-av { width: 26px; height: 26px; border-radius: 50%; background: var(--lfg-accent); color: #fff; font-weight: 700; font-size: .82rem; display: inline-flex; align-items: center; justify-content: center; }
.nav-member.ok .nav-member-av { background: #2ECC40; color: #06210b; }
.nav-member-lbl { font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 600px) { .nav-member-lbl { display: none; } .nav-member { padding: 4px; } }

.account-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 90; }
.account-pop { position: fixed; top: 64px; right: 16px; z-index: 91; width: min(360px, calc(100vw - 32px)); max-height: calc(100vh - 88px); overflow-y: auto; background: #161616; border: 1px solid var(--lfg-white-15); border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.account-pop::before { content: ""; position: absolute; top: -34%; right: -8%; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--lfg-accent) 24%, transparent), transparent 70%); pointer-events: none; }
.account-x { position: absolute; top: 5px; right: 6px; z-index: 2; background: none; border: 0; color: var(--lfg-white-50); font-size: 1.4rem; line-height: 1; cursor: pointer; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.account-x:hover { color: #fff; }
.acc-body { position: relative; padding: 24px 22px 22px; }
.acc-eyebrow { display: inline-block; background: var(--lfg-accent); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .6rem; padding: .4em .7em; border-radius: 5px; margin-bottom: 11px; }
.acc-eyebrow.ok { background: #2ECC40; color: #06210b; }
.acc-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.85rem; line-height: .94; margin-bottom: 8px; }
.acc-title .r { color: var(--lfg-accent); }
.acc-sub { color: var(--lfg-white-75, var(--lfg-white-70)); font-size: .9rem; line-height: 1.5; margin-bottom: 16px; text-wrap: pretty; }
.acc-sub b { color: var(--lfg-white); font-weight: 600; }
.acc-perks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.acc-perks li { position: relative; padding-left: 26px; font-size: .86rem; line-height: 1.4; color: var(--lfg-white-82, var(--lfg-white-70)); }
.acc-perks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; border-radius: 50%; background: var(--lfg-white-08); color: var(--lfg-white-50); font-size: .66rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.acc-perks.on li::before { background: #2ECC40; color: #06210b; }
.acc-foot { margin-top: 14px; font-size: .72rem; color: var(--lfg-white-50); }
.acc-pending { background: var(--lfg-white-08); border-radius: 12px; padding: 14px 15px; margin-bottom: 4px; }
.acc-pending p { font-size: .84rem; line-height: 1.5; color: var(--lfg-white-82, var(--lfg-white-70)); margin-bottom: 11px; }
.acc-pending b { color: var(--lfg-white); }
.acc-confirm { background: none; border: 1px solid var(--lfg-white-30); color: var(--lfg-white); font: inherit; font-weight: 600; font-size: .8rem; padding: .5rem .9rem; border-radius: var(--lfg-radius-sm); cursor: pointer; }
.acc-confirm:hover { border-color: #fff; }
.acc-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--lfg-white-08); }
.acc-link { font-weight: 600; font-size: .84rem; color: var(--lfg-accent); display: inline-flex; align-items: center; min-height: 44px; }
.acc-leave { background: none; border: 0; color: var(--lfg-white-50); font: inherit; font-size: .8rem; cursor: pointer; display: inline-flex; align-items: center; min-height: 44px; }
.acc-leave:hover { color: var(--lfg-white); }

/* shared magic-link form (nav popover, spot gate, saved sync) */
.ml-form { margin: 0; }
.ml-row { display: flex; gap: 8px; }
.ml-row input { flex: 1; min-width: 0; background: var(--lfg-black); border: 1px solid var(--lfg-white-15); color: var(--lfg-white); font: inherit; font-size: .9rem; padding: .7rem .9rem; border-radius: var(--lfg-radius-sm); }
.ml-row input::placeholder { color: var(--lfg-white-30); }
.ml-row input:focus { outline: none; border-color: var(--lfg-white-30); }
.ml-row .btn { white-space: nowrap; padding: .7rem 1.05rem; }
.ml-note { font-size: .7rem; color: var(--lfg-white-30); margin-top: 9px; line-height: 1.4; }
.ml-check { display: flex; gap: 9px; align-items: flex-start; margin-top: 11px; cursor: pointer; }
.ml-check input { margin: 1px 0 0; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--lfg-accent); cursor: pointer; }
.ml-check span { font-size: .76rem; line-height: 1.4; color: var(--lfg-white-70); }
.acc-news { display: flex; gap: 9px; align-items: flex-start; margin-top: 16px; padding: 12px 13px; border-radius: 10px; background: var(--lfg-white-08); cursor: pointer; }
.acc-news input { margin: 1px 0 0; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--lfg-accent); cursor: pointer; }
.acc-news span { font-size: .8rem; line-height: 1.4; color: var(--lfg-white-70); }
.acc-news b { color: var(--lfg-white); font-weight: 600; }

/* ---------- weather strip (under nav, full width) ---------- */
:root[data-theme="light"] { --lfg-bar-bg: #efe8dc; }
.weatherbar { border-bottom: 1px solid var(--lfg-white-08); background: var(--lfg-bar-bg); }
.weather-inner { display: flex; align-items: center; gap: 20px; padding: 8px 0; font-size: .72rem; min-height: 22px; }
.wx-tube { font-size: .72rem; color: var(--lfg-white-70); display: inline-flex; align-items: center; white-space: nowrap; overflow: hidden; max-width: 40vw; }
.wx-tube .nb-tube { overflow: hidden; text-overflow: ellipsis; }
.weatherbar .pint-chip { margin-left: auto; }
@media (max-width: 760px) { .wx-tube { display: none; } }
.weather-label { font-weight: 600; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--lfg-white-50); white-space: nowrap; }
.weather-anchor { font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--lfg-white-50); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
a.weather-anchor.link { color: var(--lfg-accent); }
a.weather-anchor.link:hover { color: var(--lfg-white); }
.weather-anchor .wx-pin { color: var(--lfg-accent); }
.weather-mid { display: flex; align-items: center; gap: 9px; min-width: 0; }
.wx-loc { font-weight: 700; font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; color: var(--lfg-white-50); white-space: nowrap; flex-shrink: 0; }
.week { display: flex; align-items: center; gap: 10px; overflow-x: auto; scrollbar-width: none; min-width: 0; }
.week::-webkit-scrollbar { display: none; }
.wday { display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.wday + .wday { padding-left: 10px; border-left: 1px solid var(--lfg-white-08); }
.wd { font-weight: 600; font-size: .66rem; letter-spacing: .01em; color: var(--lfg-white-50); }
.wi { font-size: 1.02em; line-height: 1; }
.wt { font-weight: 700; color: var(--lfg-white); }
@media (max-width: 600px) {
  .wb-tidy .weather-inner { justify-content: space-between; }
}

/* ---------- featured rail (on its own tinted band to separate it from Explore) ---------- */
.rail-sec { padding: 26px 0 24px; background: linear-gradient(180deg, #181818 0%, #131313 100%); border-bottom: 1px solid var(--lfg-white-08); }
.rail-head { display: flex; align-items: baseline; gap: 12px; margin-top: 2px; }
.rail-head h1 { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h1); line-height: .92; }
.rail-sub { color: var(--lfg-white-50); font-weight: 500; font-size: .82rem; }
.rail {
  display: flex; gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; padding: 16px 0 6px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail-card { flex: 0 0 auto; width: 70%; max-width: 280px; scroll-snap-align: start; border-radius: var(--card-radius); overflow: hidden; }
/* uniform 4:5 frame so mixed source shapes (4:5 covers vs 9:16 stories) line up */
.rail-card .post-img { aspect-ratio: 4 / 5; }
.rail-card .post-img img { height: 100%; object-fit: cover; object-position: center top; }
/* align the first card exactly to .wrap content edge — the track now lives inside a .wrap */
@media (min-width: 720px) { .rail-card { width: 300px; } }

/* ---------- home "get out of London" day-trips strip ---------- */
.dtstrip-sec { padding: 30px 0 26px; }
.dtstrip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.dtstrip-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h1); line-height: .92; margin-top: 2px; }
.dtstrip-title .r { color: var(--lfg-accent); }
.dtstrip-all { flex-shrink: 0; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .74rem; color: var(--lfg-accent); white-space: nowrap; }
.dtstrip-all:hover { color: var(--lfg-white); }
.dtstrip { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 4px 0 8px; }
@media (min-width: 560px) { .dtstrip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .dtstrip { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); } }
.dtcard { min-height: 196px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px; padding: 18px 16px 16px; border-radius: var(--card-radius); background: var(--lfg-pure-black); border: 1px solid var(--lfg-white-08); }
.dtcard::before { content: ""; position: absolute; top: -30%; right: -28%; width: 75%; height: 75%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--lfg-accent) 55%, transparent), transparent 70%); opacity: .45; pointer-events: none; }
.dtcard > * { position: relative; }
.dtcard:hover { border-color: var(--lfg-white-15); }
.dtcard-region { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .6rem; color: var(--lfg-accent); }
.dtcard-place { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.7rem; line-height: 1; }
.dtcard-line { color: rgba(255,255,255,.72); font-size: .82rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dtcard-transit { margin-top: auto; padding-top: 10px; font-family: var(--lfg-font-body); font-weight: 600; font-size: .76rem; color: rgba(255,255,255,.85); }
.dtcard-cta { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .66rem; color: var(--lfg-accent); margin-top: 8px; }
/* photo variant — destination shot behind a dark scrim so text stays legible */
.dtcard.has-photo { min-height: 244px; border-color: rgba(255,255,255,.12); }
.dtcard.has-photo::before { display: none; }
.dtcard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.dtcard-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,.55) 0%, rgba(8,8,8,.44) 42%, rgba(8,8,8,.92) 100%); }
.dtcard.has-photo:hover .dtcard-bg { transform: scale(1.03); }
.dtcard-bg { transition: transform .3s ease; }
.dtcard.has-photo .dtcard-line { color: rgba(255,255,255,.86); }
.dtcard.has-photo .dtcard-place { text-shadow: 0 1px 12px rgba(0,0,0,.4); }

/* ---------- home "free right now" giveaways strip (live, time-sensitive freebies) ---------- */
.frn-sec { position: relative; padding: 28px 0 30px; margin: 6px 0; }
.frn-sec::before { content: ""; position: absolute; inset: 0; background: radial-gradient(130% 120% at 0% 0%, color-mix(in srgb, var(--lfg-accent) 13%, transparent), transparent 58%); pointer-events: none; }
.frn-head { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.frn-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h1); line-height: .92; margin-top: 2px; }
.frn-title .r { color: var(--lfg-accent); }
.frn-all { flex-shrink: 0; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .74rem; color: var(--lfg-accent); white-space: nowrap; }
.frn-all:hover { color: var(--lfg-white); }
.frn { position: relative; display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .frn { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .frn { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); } }
.frn-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8px; padding: 18px 16px 16px; min-height: 178px; border-radius: var(--card-radius); background: var(--lfg-pure-black); border: 1px solid var(--lfg-white-08); transition: border-color .15s, transform .15s; }
.frn-card::before { content: ""; position: absolute; top: -32%; right: -26%; width: 72%; height: 72%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--lfg-accent) 55%, transparent), transparent 70%); opacity: .5; pointer-events: none; }
.frn-card > * { position: relative; }
.frn-card:hover { border-color: var(--lfg-white-15); transform: translateY(-2px); }
.frn-status { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .6rem; padding: .42em .7em; border-radius: var(--lfg-radius-pill); background: var(--lfg-accent); color: #fff; }
.frn-status.live { background: #2ECC40; color: #06210b; }
.frn-dot { width: 7px; height: 7px; border-radius: 50%; background: #06210b; animation: frn-pulse 1.4s ease-in-out infinite; }
@keyframes frn-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .frn-dot { animation: none; } }
.frn-name { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.5rem; line-height: 1; text-wrap: balance; }
.frn-when { font-family: var(--lfg-font-body); font-weight: 600; font-size: .78rem; color: rgba(255,255,255,.82); }
.frn-loc { display: flex; align-items: center; gap: 5px; font-weight: 500; font-size: .76rem; color: rgba(255,255,255,.5); }
.frn-loc .pin { color: var(--lfg-accent); }
.frn-cta { margin-top: auto; padding-top: 8px; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .66rem; color: var(--lfg-accent); }

/* ---------- home "on now this month" strip (from the calendar) ---------- */
.onnow-sec { padding: 10px 0 6px; }
.onnow-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.onnow-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h1); line-height: .92; margin-top: 2px; }
.onnow-title .r { color: var(--lfg-accent); }
.onnow-all { flex-shrink: 0; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .74rem; color: var(--lfg-accent); white-space: nowrap; }
.onnow-all:hover { color: var(--lfg-white); }
.onnow { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .onnow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .onnow { grid-template-columns: repeat(4, 1fr); } }
.onnow-card { display: flex; flex-direction: column; gap: 7px; padding: 16px 16px 17px; border-radius: var(--card-radius); border: 1px solid var(--lfg-white-15); background: #161616; transition: border-color .15s, transform .15s; }
.onnow-card:hover { border-color: var(--lfg-white-30); transform: translateY(-2px); }
.onnow-when { font-weight: 700; font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; color: var(--lfg-accent); }
.onnow-name { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.12rem; line-height: 1.04; color: var(--lfg-white); text-wrap: balance; }
.onnow-area { display: flex; align-items: center; gap: 5px; font-weight: 500; font-size: .74rem; color: var(--lfg-white-50); margin-top: auto; }
.onnow-area .pin { color: var(--lfg-accent); }
[data-theme="light"] .onnow-card { background: #ffffff; box-shadow: 0 1px 3px rgba(28,20,13,.06); }

/* ---------- post image (shared by rail + masonry) ---------- */
.post-img { position: relative; overflow: hidden; border-radius: var(--card-radius); background: #1a1a1a; line-height: 0; }
.post-img img { width: 100%; height: auto; display: block; }

/* no-photo fallback (pillar pages / text-forward spots saved into the list) */
.post-img.noimg { display: flex; align-items: center; justify-content: center; background: var(--lfg-pure-black); line-height: 1; }
.post-img.noimg::before { content: ""; position: absolute; top: -30%; right: -25%; width: 70%; height: 70%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--lfg-accent) 38%, transparent) 0%, transparent 70%); pointer-events: none; }
.noimg-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px; text-align: center; }
.noimg-free { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .6rem; padding: .4em .75em; border-radius: var(--lfg-radius-pill); background: var(--lfg-accent); color: #fff; }
.noimg-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.5rem; line-height: 1.02; text-wrap: balance; }
.noimg-mark { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .64rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.noimg-mark .r { color: var(--lfg-accent); }

/* badges over the image */
.badges { position: absolute; top: 10px; left: 10px; right: 10px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; line-height: 1; }
.badge {
  font-family: var(--lfg-font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: .58rem; padding: .42em .6em; border-radius: 4px;
  background: rgba(14,14,14,.72); backdrop-filter: blur(4px); color: #fff;
}
.badge.guide { background: #fff; color: #0e0e0e; }
.badge.weekend { background: var(--lfg-accent); }
.badge.news { background: var(--lfg-accent); }
.badge.bloom { background: rgba(14,14,14,.72); }
.badge.ghost { background: rgba(255,255,255,.16); }
.reel-mark {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(14,14,14,.66); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; padding-left: 2px;
}
body.hide-reels .reel-mark { display: none; }

/* ---------- caption strip (the web info layer) ---------- */
.cap { padding: 11px 2px 4px; }
.cap-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 9px; }
.cost { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .58rem; padding: .34em .6em; border-radius: var(--lfg-radius-pill); background: var(--lfg-accent); color: #fff; }
.cost.under10 { background: #2ECC40; color: #06210b; }
.cost.ticketed { background: rgba(255,255,255,.14); color: var(--lfg-white-90); }
.cap-date { font-family: var(--lfg-font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .62rem; color: var(--lfg-white-50); }
.cap-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.12rem; line-height: .98; margin-bottom: 7px; text-wrap: balance; }
.cap-summary { color: var(--lfg-white-70); font-size: .85rem; line-height: 1.45; margin-bottom: 10px; }
.cap-loc { display: flex; align-items: center; gap: 5px; font-weight: 500; font-size: .76rem; color: var(--lfg-white-50); }
.cap-loc .pin { color: var(--lfg-accent); }

/* ---------- section + explore head ---------- */
.section { padding: 22px 0 36px; }
.explore-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.explore-head h2 { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h2); line-height: .94; }
.explore-sub { color: var(--lfg-white-50); font-size: .88rem; font-weight: 500; }

/* ---------- explore: browse-by-category sections (no-query state) ---------- */
.feed-cat { margin-top: 34px; }
.feed-cat:first-of-type { margin-top: 4px; }
.feed-cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 13px; flex-wrap: wrap; }
.feed-cat-h { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; line-height: 1; display: flex; align-items: baseline; gap: 10px; }
.feed-cat-n { font-family: var(--lfg-font-body); font-weight: 600; font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--lfg-white-50); }
.feed-cat-all { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lfg-accent); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.feed-cat-all:hover { color: var(--lfg-white); }
.feed-cat-link { color: inherit; text-decoration: none; }
.feed-cat-link:hover { color: var(--lfg-accent); }
.explore-browse-all { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lfg-accent); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.explore-browse-all:hover { color: var(--lfg-white); }

/* ---------- search ---------- */
.search { display: flex; align-items: center; gap: 10px; background: #161616; border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-md); padding: 0 14px; height: 50px; margin-bottom: 14px; max-width: 560px; }
.search:focus-within { border-color: var(--lfg-white-30); }
.search .mag { font-size: 1.2rem; color: var(--lfg-white-50); }
.search input { flex: 1; min-width: 0; background: none; border: none; outline: none; color: #fff; font: inherit; font-size: .95rem; }
.search input::placeholder { color: var(--lfg-white-30); }

/* ---------- filters ---------- */
.filters { display: flex; gap: 9px; margin-bottom: 22px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: none; align-items: center; }
.filters::-webkit-scrollbar { display: none; }
.pill { flex-shrink: 0; font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .72rem; padding: .5em .9em; border-radius: var(--lfg-radius-pill); background: var(--lfg-white-08); color: var(--lfg-white-70); border: 1px solid transparent; transition: background .15s, color .15s, border-color .15s; white-space: nowrap; }
.pill:hover { color: #fff; }
.pill.on { background: var(--lfg-accent); color: #fff; }
.pill.toggle { background: transparent; border-color: var(--lfg-white-15); }
.pill.toggle.on { background: #fff; color: #0e0e0e; border-color: #fff; }
.filter-div { flex-shrink: 0; width: 1px; height: 22px; background: var(--lfg-white-15); margin: 0 2px; }
.pill.clear { background: transparent; color: var(--lfg-white-50); text-decoration: underline; text-underline-offset: 3px; }
.pill.clear:hover { color: #fff; }

/* ---------- feed grid (uniform 4:5 cards) ---------- */
.masonry { display: grid; grid-template-columns: repeat(var(--mcols), 1fr); gap: 14px; align-items: stretch; }
@media (min-width: 600px) { .masonry { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .masonry { grid-template-columns: repeat(var(--mcols-wide), 1fr); gap: 18px; } }
.card { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.card .post-img { aspect-ratio: 4 / 5; transition: transform .18s ease; }
.card .post-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card .post-img.crop-top img { object-position: center bottom; transform: scale(1.12); transform-origin: bottom center; }
/* poster crop: worded social slide → show the photo (top), card supplies its own text */
/* poster cards: show the whole cover (interim) — like the rail.
   For a true photo-only card, supply a clean no-text image instead. */
.card .post-img.crop-poster img { object-position: center top; }
.card:hover .post-img { transform: translateY(-3px); }

/* past / ended events (revealed by the Explore "Past events" toggle) */
.card.is-past { position: relative; }
.card.is-past .post-img { opacity: .5; filter: saturate(.65); }
.card.is-past .cap { opacity: .68; }
.card.is-past:hover .post-img { opacity: .72; }
.card-ended { position: absolute; top: 10px; right: 10px; z-index: 3; background: rgba(14,14,14,.85); color: var(--lfg-white-92, rgba(255,255,255,.92)); font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; padding: 4px 9px; border-radius: 4px; border: 1px solid var(--lfg-white-20, rgba(255,255,255,.2)); }

.feed-empty { color: var(--lfg-white-50); padding: 40px 0; font-size: .95rem; text-align: center; }

/* ---------- newsletter band ---------- */
.band { background: #161616; border-top: 1px solid var(--lfg-white-08); border-bottom: 1px solid var(--lfg-white-08); position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--lfg-accent) 40%, transparent) 0%, transparent 70%); pointer-events: none; }
.band-inner { position: relative; padding-top: 38px; padding-bottom: 38px; display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 820px) { .band-inner { grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; } .band-inner > div:last-child { text-align: right; } .band-inner > div:last-child .socials { justify-content: flex-end; } .socials-label { margin-top: 6px; } }
.band h2 { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: var(--lfg-text-h2); line-height: .94; margin-bottom: 8px; }
.band p { color: var(--lfg-white-70); font-size: .92rem; margin-bottom: 16px; max-width: 38ch; }
.nl-form { display: flex; gap: 8px; max-width: 420px; }
.nl-form input { flex: 1; min-width: 0; background: var(--lfg-black); border: 1px solid var(--lfg-white-15); color: #fff; font: inherit; font-size: .9rem; padding: .72rem .9rem; border-radius: var(--lfg-radius-sm); }
.nl-form input::placeholder { color: var(--lfg-white-30); }
.nl-form .btn { padding: .72rem 1.1rem; white-space: nowrap; }
.nl-note { font-size: .72rem; color: var(--lfg-white-30); margin-top: 9px; }
.nl-note.nl-err { color: var(--lfg-accent); font-weight: 500; }
.nl-form input[aria-invalid="true"] { border-color: var(--lfg-accent); }
/* confirmation state (replaces the form once submitted) */
.nl-done { display: flex; align-items: flex-start; gap: 12px; max-width: 420px;
  background: var(--lfg-white-08); border: 1px solid var(--lfg-white-15);
  border-radius: var(--lfg-radius-md, 12px); padding: 14px 16px; }
.nl-done-tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--lfg-accent); color: #fff; font-size: .8rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.nl-done-txt { display: flex; flex-direction: column; gap: 3px; }
.nl-done-txt b { font-size: .92rem; color: var(--lfg-white); }
.nl-done-txt span { font-size: .8rem; color: var(--lfg-white-70); line-height: 1.45; }
.socials-label { font-weight: 600; font-size: .78rem; color: var(--lfg-white-50); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.socials { display: flex; flex-wrap: wrap; gap: 9px; }
.soc { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .8rem; color: var(--lfg-white-70); border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-pill); padding: .46em .8em; transition: border-color .15s, color .15s; }
.soc:hover { color: #fff; border-color: var(--lfg-white-30); }
.soc-ico { flex: none; opacity: .85; transition: opacity .15s; }
.soc:hover .soc-ico { opacity: 1; }

/* ---------- footer ---------- */
.foot { padding: 34px 0 60px; }
.foot-inner { display: flex; flex-direction: column; gap: 22px; }
@media (min-width: 720px) { .foot-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.foot .logo { font-size: 1rem; margin-bottom: 12px; }
.foot .logo-img { height: 24px; margin-bottom: 14px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-links a { font-weight: 500; font-size: .82rem; color: var(--lfg-white-50); }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: .72rem; color: var(--lfg-white-30); margin-top: 14px; line-height: 1.5; }
.foot-cats { display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.foot-cats-h { font-weight: 700; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--lfg-white-50); }
.foot-cats-links { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.foot-cats-links a { font-weight: 500; font-size: .78rem; color: var(--lfg-white-50); }
.foot-cats-links a:hover { color: var(--lfg-accent); }

/* ---------- mobile drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(3px); }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(78vw, 320px); background: #1c1c1c; border-left: 1px solid var(--lfg-white-15); box-shadow: -24px 0 60px rgba(0,0,0,.7); padding: 24px 22px; display: flex; flex-direction: column; gap: 4px; }
.drawer-panel a { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; padding: 10px 0; border-bottom: 1px solid var(--lfg-white-08); }
.drawer-close { align-self: flex-end; font-size: 1.6rem; line-height: 1; color: var(--lfg-white-70); margin: -8px -8px 4px 0; width: 44px; min-height: 44px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- card link + maps footer ---------- */
.card-link { display: flex; flex-direction: column; flex: 1 0 auto; }
.cap-hours { display: flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 500; color: var(--lfg-white-50); margin-top: 4px; }
.maps-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding: 9px 11px; background: var(--lfg-white-08); border-radius: 10px; transition: background .15s; min-width: 0;und .15s; }
.maps-row:hover { background: var(--lfg-white-15); }
.maps-row .cap-loc { margin: 0; min-width: 0; overflow: hidden; }
.cap-loc-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.maps-go { font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lfg-accent); white-space: nowrap; flex-shrink: 0; }
/* narrow 2-col mobile: stack the row so the area name stays readable */
@media (max-width: 599px) {
  .maps-row { flex-direction: column; align-items: flex-start; gap: 5px; }
  .maps-row .cap-loc { max-width: 100%; }
}

/* ---------- explore section header accent (distinguishes it from the rail) ---------- */
.section { padding-top: 30px; }
.explore-head { border-top: 3px solid var(--lfg-accent); padding-top: 16px; width: max-content; max-width: 100%; }

/* ---------- load more ---------- */
.loadmore-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 32px 0 4px; }
.loadmore { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; padding: .8rem 1.9rem; border-radius: var(--lfg-radius-pill); border: 1.5px solid var(--lfg-white-30); color: #fff; background: transparent; transition: background .15s, border-color .15s; }
.loadmore:hover { background: var(--lfg-white-08); border-color: var(--lfg-white-50); }
.loadmore-count { font-size: .74rem; color: var(--lfg-white-30); }

/* ---------- virtual guide assistant ---------- */
.agent-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--lfg-font-body); font-weight: 700; letter-spacing: .01em; font-size: .84rem;
  background: var(--lfg-accent); color: #fff;
  padding: .8rem 1.15rem; border-radius: var(--lfg-radius-pill);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  transition: transform .15s, opacity .15s;
}
.agent-fab:hover { transform: translateY(-2px); }
.agent-fab.hide { opacity: 0; pointer-events: none; transform: translateY(8px); }
.agent-fab-ico { font-size: 1.45rem; line-height: 1; display: inline-block; animation: brollybob 2.4s ease-in-out infinite; transform-origin: bottom center; }
.agent-fab-ico svg { width: 28px; height: 28px; display: block; }
@keyframes brollybob { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-3px) rotate(6deg); } }

.agent-panel {
  position: fixed; z-index: 71; right: 16px; bottom: 16px;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 32px));
  background: #161616; border: 1px solid var(--lfg-white-15); border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  opacity: 0; transform: translateY(12px) scale(.98); pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.agent-panel.open { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 520px) {
  .agent-panel { right: 0; left: 0; bottom: 0; width: 100%; height: 82vh; border-radius: 18px 18px 0 0; }
}
.agent-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--lfg-white-08); }
.agent-id { display: flex; align-items: center; gap: 10px; }
.agent-avatar { color: var(--lfg-accent); display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(230,59,46,0.12); flex-shrink: 0; }
.agent-avatar svg { width: 30px; height: 30px; display: block; }
.agent-name { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1rem; line-height: 1; }
.agent-status { font-size: .72rem; color: var(--lfg-white-50); margin-top: 3px; }
.agent-close { font-size: 1.5rem; line-height: 1; color: var(--lfg-white-50); padding: 2px 6px; }
.agent-close:hover { color: #fff; }

.agent-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.agent-msg { max-width: 86%; font-size: .9rem; line-height: 1.5; padding: 10px 13px; border-radius: 14px; }
.agent-msg.assistant { background: var(--lfg-white-08); color: var(--lfg-white-90); align-self: flex-start; border-bottom-left-radius: 5px; }
.agent-msg.user { background: var(--lfg-accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.agent-msg.typing { display: inline-flex; gap: 4px; align-items: center; }
.agent-msg.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--lfg-white-50); animation: agenttype 1s infinite; }
.agent-msg.typing span:nth-child(2) { animation-delay: .15s; }
.agent-msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes agenttype { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.agent-suggest { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.agent-chip { font-size: .8rem; font-weight: 500; color: var(--lfg-white-90); border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-pill); padding: .5em .85em; text-align: left; transition: border-color .15s, background .15s; }
.agent-chip:hover { border-color: var(--lfg-white-30); background: var(--lfg-white-08); }

.agent-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--lfg-white-08); }
.agent-input input { flex: 1; min-width: 0; background: var(--lfg-black); border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-pill); color: #fff; font: inherit; font-size: .9rem; padding: .6rem .95rem; outline: none; }
.agent-input input:focus { border-color: var(--lfg-white-30); }
.agent-input input::placeholder { color: var(--lfg-white-30); }
.agent-send { flex-shrink: 0; width: 40px; border-radius: 50%; background: var(--lfg-accent); color: #fff; font-size: 1.1rem; }
.agent-send:disabled { opacity: .4; cursor: default; }
