/* momsalike.com — Central Florida family platform. Visual system copied from
   the proven momsaliketravel design (coastal luxury tokens, same family). */
:root {
  --ink: #0C1D2B; --ink-2: #14293A;
  --paper: #FBF7F0; --paper-2: #F3ECDF;
  --coral: #E8735A; --coral-deep: #D45E44; --gold: #C9A96A;
  --text: #21303C; --text-2: #6B7684; --line: rgba(12,29,43,.12);
  --font: 'Inter', system-ui, sans-serif; --display: 'Fraunces', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--paper); color: var(--text); line-height: 1.6; }
img { max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 550; letter-spacing: -.01em; line-height: 1.1; }
.shell { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.muted { color: var(--text-2); }

.nav { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-glass { position: fixed; inset: 0 0 auto 0; background: linear-gradient(180deg, rgba(12,29,43,.45), transparent);
  border-bottom: none; backdrop-filter: none; transition: background .25s ease, box-shadow .25s ease; }
.nav-glass.nav-scrolled { background: rgba(12, 29, 43, .96); backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(12, 29, 43, .25); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .9rem 0; }
.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.1rem); flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .9rem; }
.nav-glass .nav-links a { color: #fff; opacity: .92; }
.wordmark { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.45rem; color: var(--ink);
  flex-shrink: 0; line-height: 1; display: inline-flex; align-items: center; }
.wm-light { color: var(--paper); text-shadow: 0 1px 14px rgba(12,29,43,.5); }
.nav-logo { height: 34px; width: auto; display: block; }
.nav-glass .nav-logo { filter: drop-shadow(0 0 10px rgba(251,247,240,.9)) drop-shadow(0 1px 3px rgba(251,247,240,.8)); }
.footer-logo { height: 26px; width: auto; display: inline-block; margin-bottom: .3rem; }
.nav-cta { background: var(--coral); color: #fff !important; font-weight: 600; font-size: .9rem;
  padding: .55rem 1.2rem; border-radius: 100px; }

/* ---- cinematic hero: video over rotating Ken Burns fallback slides ---- */
.hero-cinema { position: relative; min-height: 88dvh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink); }
.hero-slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: -6%; background-size: cover; background-position: center;
  opacity: 0; animation: slidecycle 24s infinite, kenburns 24s ease-in-out infinite; will-change: opacity, transform; }
.slide:nth-child(1) { animation-delay: 0s, 0s; }
.slide:nth-child(2) { animation-delay: 8s, 8s; }
.slide:nth-child(3) { animation-delay: 16s, 16s; }
@keyframes slidecycle {
  0% { opacity: 0; } 4% { opacity: 1; } 33.3% { opacity: 1; } 41% { opacity: 0; } 100% { opacity: 0; }
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  45% { transform: scale(1.09) translate(1.2%, -1%); }
  100% { transform: scale(1.09) translate(1.2%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .slide { animation: none; }
  .slide:nth-child(1) { opacity: 1; }
}
.hero-scrim { position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,29,43,.42) 0%, rgba(12,29,43,.30) 42%, rgba(12,29,43,.86) 100%),
    linear-gradient(90deg, rgba(12,29,43,.60) 0%, rgba(12,29,43,.22) 52%, rgba(12,29,43,0) 100%); }
.hero-inner { position: relative; padding-bottom: clamp(2.5rem, 7vw, 5rem); padding-top: 7rem; color: var(--paper); }
.hero-inner h1 { font-size: clamp(2.4rem, 6.5vw, 4.2rem); max-width: 17ch; color: var(--paper);
  text-shadow: 0 2px 30px rgba(12,29,43,.55); text-wrap: balance; }
.hero-inner h1 em { font-style: italic; color: #FFB49E; }
.hero-inner p { max-width: 54ch; margin-top: 1.1rem; font-size: 1.06rem; color: rgba(251,247,240,.88);
  text-shadow: 0 1px 18px rgba(12,29,43,.6); }
.hero-actions { display: flex; gap: .8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.btn { display: inline-block; font-weight: 600; border-radius: 100px; padding: .85rem 1.6rem; text-decoration: none; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-2); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 8px 28px rgba(232,115,90,.4); }
.btn-coral:hover { background: var(--coral-deep); }
.btn-glass { border: 1.5px solid rgba(251,247,240,.55); color: var(--paper);
  backdrop-filter: blur(6px); background: rgba(251,247,240,.08); }
.hero-note { margin-top: 2rem; font-size: .8rem; color: rgba(251,247,240,.7);
  letter-spacing: .08em; text-transform: uppercase; }

/* ---- page hero (interior pages) ---- */
.page-hero { position: relative; background-size: cover; background-position: center;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3.5rem); background-color: var(--ink); }
.page-hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,29,43,.5), rgba(12,29,43,.72)); }
/* deeper filter variant for busy/bright hero photos (owner: words must stay readable) */
.page-hero-deep .scrim { background:
  linear-gradient(180deg, rgba(12,29,43,.62), rgba(12,29,43,.82)),
  linear-gradient(90deg, rgba(12,29,43,.45) 0%, rgba(12,29,43,.05) 70%); }
.page-hero .shell { position: relative; color: var(--paper); }
.page-hero h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); color: var(--paper); }
.page-hero p { color: rgba(251,247,240,.85); margin-top: .6rem; max-width: 52ch; }

.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.section-head .more { text-decoration: none; color: var(--coral-deep); font-weight: 600; font-size: .85rem; }
.stamp { font-size: .78rem; color: var(--text-2); }

/* ---- badges + chips ---- */
.badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .2rem .6rem; border-radius: 100px; }
.badge-free { background: var(--coral); color: #fff; }
.badge-price { background: var(--paper-2); color: var(--ink); border: 1px solid var(--line); }
.badge-region { background: color-mix(in srgb, var(--ink) 8%, transparent); color: var(--ink); }
.badge-cat { background: color-mix(in srgb, var(--gold) 18%, transparent); color: #8a6f35; }
.chip { display: inline-block; font-size: .72rem; font-weight: 600; padding: .18rem .6rem; border-radius: 100px;
  color: var(--ink); background: color-mix(in srgb, var(--ink) 7%, transparent); border: 1px solid var(--line); }

/* ---- Round 15: shared "see more" progressive reveal (site.js) ----
   .sm-hide is added by JS ONLY, so no-JS keeps the full list visible. */
.sm-hide { display: none !important; }
.see-more-btn { display: block; margin: .7rem auto 0; border: 1px solid var(--line);
  background: var(--paper-2); border-radius: 100px; padding: .38rem 1.2rem;
  font-size: .88rem; font-weight: 600; color: var(--coral-deep); cursor: pointer; }
.see-more-btn:hover { border-color: var(--coral); background: color-mix(in srgb, var(--coral) 10%, var(--paper-2)); }

/* ---- v2 density kit: slim hero, stats strip, filter chips, dense today list,
   busiest-now cards ---- */
.hero-cinema.hero-slim { min-height: 46dvh; }
.hero-slim .hero-inner { padding-top: 6.5rem; padding-bottom: clamp(1.8rem, 5vw, 3rem); }
.hero-slim .hero-note { margin-top: 1.2rem; }
.stats-strip { padding: .55rem 0; background: var(--ink); color: #fff;
  font-size: .92rem; text-align: center; letter-spacing: .02em; }
.stats-strip .stats-dot { opacity: .5; margin: 0 .35rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .45rem; margin: .2rem 0 1rem; }
.fchip { border: 1px solid var(--line); background: #fff; border-radius: 100px;
  padding: .32rem .85rem; font-size: .88rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.fchip-on { background: var(--coral); border-color: var(--coral); color: #fff; }
.fchip-select { padding: .32rem .6rem; }
.ev-group { font-family: var(--display); font-size: 1.05rem; margin: 1.1rem 0 .4rem; color: var(--ink); }
.ev-row { display: grid; grid-template-columns: 5.2rem minmax(0, 1fr) auto; gap: .7rem; align-items: center;
  padding: .5rem .4rem; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.ev-row:hover { background: color-mix(in srgb, var(--coral) 6%, transparent); }
.ev-time { font-variant-numeric: tabular-nums; color: var(--coral-deep); font-weight: 600; font-size: .9rem; }
.ev-main { min-width: 0; }
.ev-main strong { display: block; font-size: .98rem; line-height: 1.3; }
.ev-venue { display: block; color: var(--text-2); font-size: .82rem; }
.ev-meta { display: flex; gap: .35rem; align-items: center; white-space: nowrap; }
@media (max-width: 640px) {
  .ev-row { grid-template-columns: 4rem minmax(0, 1fr); }
  .ev-meta { display: none; }
}

/* ---- round 2.5: row photo thumbs + one-line hooks ---- */
.ev-row.has-thumb { grid-template-columns: 56px 5.2rem minmax(0, 1fr) auto; }
.ev-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; display: block; }
.ev-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-hook { display: block; color: var(--text-2); font-size: .84rem; line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.etile .cap-hook { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; font-size: .8rem; line-height: 1.35; opacity: .92; margin: .15rem 0 .1rem; }
@media (max-width: 640px) {
  /* 390px budget: 48px thumb + 4rem time + gaps still leaves the title
     column >200px; nowrap hooks ellipsize instead of overflowing. */
  .ev-row.has-thumb { grid-template-columns: 48px 4rem minmax(0, 1fr); }
  .ev-thumb { width: 48px; height: 48px; }
}

/* ---- event photo tiles (storefront rails) ---- */
.tile-rail .dcard { min-width: 0; }
.event-card .card-photo img { aspect-ratio: 16/10; height: auto; }
.event-card .sum { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tile-rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(72vw, 260px);
  gap: 1rem; overflow-x: auto; padding-bottom: .6rem; scroll-snap-type: x mandatory; }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.etile { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; display: block;
  text-decoration: none; box-shadow: 0 10px 30px rgba(12,29,43,.12); background: var(--ink); scroll-snap-align: start; }
.etile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.etile:hover img { transform: scale(1.05); }
.etile .cap { position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .9rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(12,29,43,.88)); }
.etile .cap b { font-size: 1rem; display: block; line-height: 1.25; }
.etile .cap small { opacity: .9; }
.etile .flag { position: absolute; top: .7rem; right: .7rem; background: var(--coral); color: #fff;
  font-weight: 700; font-size: .74rem; padding: .28rem .6rem; border-radius: 100px; }
.etile .flag.price { background: rgba(12,29,43,.72); }

/* ---- region tile grid ---- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .8rem; }
.rtile { display: block; text-decoration: none; text-align: center; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem .6rem;
  font-weight: 650; color: var(--ink); transition: transform .18s, box-shadow .2s; }
.rtile:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(12,29,43,.12); }
.rtile span { display: block; font-size: 1.5rem; margin-bottom: .3rem; }

/* ---- radio strip (rotating region briefs) ---- */
.radio-strip { background: var(--ink); color: var(--paper); border-radius: 100px;
  display: flex; align-items: center; gap: .9rem; padding: .7rem 1.2rem; overflow: hidden; }
.radio-strip .mic { font-size: 1.2rem; flex: none; }
.radio-strip .rs-body { min-width: 0; }
.radio-strip .rs-region { font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #FFB49E; }
.radio-strip .rs-text { font-size: .92rem; color: rgba(251,247,240,.9); overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ---- cards (events list, stays) ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; }
.dcard { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.2rem 1.25rem;
  display: flex; flex-direction: column; gap: .6rem; transition: transform .18s, box-shadow .2s;
  text-decoration: none; color: inherit; }
.dcard:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(12,29,43,.1); }
.dcard .line { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-deep); }
.dcard h3 { font-size: 1.18rem; }
.dcard .sum { font-size: .88rem; color: var(--text-2); flex: 1; }
.dcard .price { font-size: 1.1rem; font-weight: 700; }
.card-photo { margin: -1.2rem -1.25rem .4rem; position: relative; }
.card-photo img { display: block; width: 100%; height: 170px; object-fit: cover; border-radius: 17px 17px 0 0; }
.photo-credit { position: absolute; right: .5rem; bottom: .4rem; font-size: .62rem; color: #fff; opacity: .8;
  text-decoration: none; background: rgba(12,29,43,.45); padding: .1rem .45rem; border-radius: 100px; }
.perks { display: flex; flex-wrap: wrap; gap: .35rem; }
.perk { font-size: .72rem; font-weight: 600; padding: .18rem .6rem; border-radius: 100px;
  color: #8a6f35; background: color-mix(in srgb, var(--gold) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); }
.gem-badge { font-size: .72rem; font-weight: 700; color: var(--coral-deep); }

/* ---- filter pills ---- */
.filter-row { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.4rem 0 .2rem; position: relative; }
.fbtn { font-size: .82rem; font-weight: 650; padding: .4rem .95rem; border-radius: 100px;
  border: 1.5px solid rgba(251,247,240,.4); color: var(--paper); text-transform: capitalize; }
.fbtn.on { background: var(--coral); border-color: var(--coral); }
.fsep { opacity: .4; color: var(--paper); align-self: center; }

/* ---- event page ---- */
.event-article { max-width: 720px; margin: 0 auto 3rem; padding: 0 1.1rem; }
.event-photo { position: relative; margin: 1.2rem 0; }
.event-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 18px; display: block; }
.event-kicker { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.4rem; }
.event-title { font-size: clamp(1.7rem, 4.5vw, 2.5rem); color: var(--ink); margin: .6rem 0 .4rem; }
.event-when, .event-where { color: var(--text); margin: .25rem 0; }
.event-where a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
.age-chips { margin: .5rem 0; display: flex; gap: .35rem; flex-wrap: wrap; }
.event-desc { font-size: 1.05rem; line-height: 1.65; margin: 1rem 0; }
.event-source { margin: 1.2rem 0; }
.event-source a { color: var(--coral-deep); font-weight: 650; text-decoration: none; }
.rainplan-banner { background: color-mix(in srgb, var(--ink) 92%, transparent); color: var(--paper);
  border-radius: 14px; padding: .9rem 1.1rem; margin: 1rem 0; font-size: .95rem; }
.picks-panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.2rem 1.3rem; margin-top: 1.6rem; }
.picks-panel h2 { font-size: 1.25rem; margin-bottom: .8rem; }
.picks-note { font-size: .74rem; margin-top: .8rem; }
.pick { display: flex; gap: .6rem; align-items: flex-start; margin: .6rem 0; }
.pick .pk-emoji { font-size: 1.15rem; line-height: 1.3; }
.pick b a { color: inherit; }
.pick small { display: block; color: var(--text-2); font-size: .8rem; line-height: 1.45; }
.pick .pk-where { font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--coral-deep); }

/* ---- flip cards (travel back-face pattern, shared) ---- */
.fcard { perspective: 1400px; }
.fcard .finner { position: relative; height: 100%; transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.35,.15,.25,1); }
.fcard.flipped .finner { transform: rotateY(180deg); }
.fcard .fface { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.fcard .ffront { position: relative; height: 100%; box-sizing: border-box; }
.fcard .fback { position: absolute; inset: 0; transform: rotateY(180deg); overflow-y: auto; }
.flip-chip { cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--coral-deep); background: color-mix(in srgb, var(--coral) 12%, transparent);
  padding: .28rem .7rem; border-radius: 100px; align-self: flex-start; user-select: none; }

/* ---- how-it-works / pitch blocks (partner page) ---- */
.how { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.how-step { background: var(--paper-2); border-radius: 18px; padding: 1.3rem; }
.how-step .n { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--coral-deep); }
.how-step h3 { margin: .4rem 0 .3rem; font-size: 1.1rem; }
.how-step p { font-size: .9rem; color: var(--text-2); }

/* ---- CTA panel (ink block, travel .trish pattern) ---- */
.cta-panel { display: grid; grid-template-columns: 1fr; gap: 1.5rem; background: var(--ink); color: var(--paper);
  border-radius: 24px; padding: clamp(1.6rem, 5vw, 3rem); background-size: cover; background-position: center right; }
.cta-panel h2 { color: var(--paper); font-size: clamp(1.5rem, 4vw, 2.1rem); }
.cta-panel p { color: rgba(251,247,240,.78); max-width: 58ch; }
.cta-panel .sig { font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--gold); }

/* ---- newsletter ---- */
.newsletter { background: var(--paper-2); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.6rem, 5vw, 2.6rem); text-align: center; }
.newsletter h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
.newsletter p { color: var(--text-2); max-width: 52ch; margin: .5rem auto 1rem; }
.f { display: grid; gap: .65rem; text-align: left; }
.f .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.input { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem .85rem; }
.input:focus-visible { border-color: var(--coral); box-shadow: 0 0 0 3px color-mix(in srgb, var(--coral) 20%, transparent); }
textarea.input { min-height: 74px; resize: vertical; }
.f .send { background: var(--ink); color: var(--paper); font-weight: 700; border-radius: 12px; padding: .85rem; }
.f .cancel { color: var(--text-2); padding: .4rem; }
.newsletter .f { max-width: 460px; margin: 0 auto; }
.sent { text-align: center; padding: 1.5rem 0; }
.sent .big { font-size: 2.4rem; }

/* ---- sponsor slot ---- */
.sponsor-slot { display: block; text-align: center; text-decoration: none; color: var(--text-2);
  border: 1.5px dashed var(--line); border-radius: 16px; padding: 1.1rem; font-size: .9rem; font-weight: 600; }
.sponsor-slot:hover { color: var(--coral-deep); border-color: var(--coral); }

/* ---- modal + toast ---- */
.modal-wrap { position: fixed; inset: 0; z-index: 90; background: rgba(12,29,43,.45);
  display: grid; place-items: center; padding: 1rem; }
.modal { width: min(480px, 100%); max-height: 92dvh; overflow-y: auto; background: var(--paper);
  border-radius: 20px; padding: 1.5rem; }
.modal h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.modal .sub { font-size: .88rem; color: var(--text-2); margin-bottom: 1rem; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 100;
  background: var(--ink); color: var(--paper); border-radius: 12px; padding: .7rem 1rem; font-size: .9rem; }

.footer { border-top: 1px solid var(--line); padding: 2rem 0 2.6rem; font-size: .85rem; color: var(--text-2); }
.footer .wordmark { font-size: 1.1rem; }
.footer a { color: inherit; }

/* ---- breathing glow ---- */
@keyframes breathe-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(232,115,90,.35); }
  50% { box-shadow: 0 8px 44px rgba(232,115,90,.75), 0 0 24px rgba(232,115,90,.35); }
}
.breathe { animation: breathe-glow 2.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .breathe { animation: none; }
  .fcard .finner { transition: none; }
}

/* --- 2026-07-16 round 2: nav dropdown + mobile burger + section subtitles --- */
.nav-drop { position: relative; }
.nav-drop-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid rgba(12,29,43,.08); border-radius: 12px;
  box-shadow: 0 12px 30px rgba(12,29,43,.14); padding: .4rem; z-index: 60; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: flex; flex-direction: column; }
.nav-drop-menu a { padding: .45rem .7rem; border-radius: 8px; color: #0C1D2B !important; }
.nav-drop-menu a:hover { background: #FBF7F0; }
.nav-burger { display: none; background: none; border: 0; font-size: 1.45rem; cursor: pointer; color: inherit; }
.nav-glass .nav-burger { color: #fff; }
@media (max-width: 1259px) {
  .nav-burger { display: block; }
  .nav .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; background: #fff;
    padding: .8rem 1.2rem 1rem; gap: .3rem; box-shadow: 0 18px 40px rgba(12,29,43,.16); z-index: 55; }
  .nav-open .nav-links { display: flex; }
  .nav .nav-links a { color: #0C1D2B !important; padding: .35rem 0; }
  .nav-drop-menu { display: flex; flex-direction: column; position: static; box-shadow: none; border: 0; padding: 0 0 0 1rem; }
}
/* ---- Round 10: one clean unwrapped tab row (below that, burger). Round 16
   raised 1180 -> 1260: the 12th tab ("Discounts") needs the extra room. ---- */
@media (min-width: 1260px) {
  .nav-links { flex-wrap: nowrap; gap: .7rem; }
  .nav-links a, .nav-links .nav-cta { font-size: .85rem; white-space: nowrap; }
}
/* 1260 to 1359: the fourteen-item row is 1069px against a 1000px shell, so
   the two links a reader also reaches from Browse and the footer step out
   and the rest tighten. Must sit AFTER the 1260 block to win the cascade. */
@media (min-width: 1260px) and (max-width: 1359px) {
  .nav-links { gap: .5rem; }
  .nav-links a, .nav-links .nav-cta { font-size: .8rem; }
  .nav-links > a[href="/events/"], .nav-links > a[href="/sports"] { display: none; }
}

/* ---- Round 6: /calendar date strip + native date fallback ---- */
.cal-teaser { margin-top: .6rem; }
.cal-teaser a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
.cal-strip { display: flex; gap: .5rem; overflow-x: auto; padding: .3rem .1rem .8rem;
  margin: 1rem 0 .8rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.cal-day { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .1rem; min-width: 3.1rem; min-height: 3.1rem; padding: .4rem .5rem;
  border-radius: 14px; background: var(--paper-2); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); scroll-snap-align: start; }
.cal-day:hover { border-color: var(--coral); }
.cal-day-sel { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.cal-dow { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.cal-dnum { font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1; }
.cal-cnt { font-size: .68rem; font-weight: 700; color: var(--coral-deep); }
.cal-day-sel .cal-cnt { color: var(--gold); }
.cal-datewrap { display: flex; align-items: center; gap: .6rem; margin: 0 0 1.4rem; }
.cal-datelabel { font-size: .85rem; color: var(--text-2); }
.cal-datepick { font: inherit; font-size: .9rem; padding: .55rem .7rem; min-height: 44px;
  border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.cal-empty { padding: .2rem 0 .6rem; }
@media (max-width: 640px) {
  .cal-day { min-width: 2.8rem; min-height: 2.8rem; }
}
.section-sub { color: #667; font-size: .9rem; margin: .15rem 0 .8rem; }

/* ---- Round 7: /kids-eat-free day tabs, cards, sentiment bar ---- */
.kef-promo { display: block; background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px;
  padding: .95rem 1.15rem; text-decoration: none; color: var(--ink); font-weight: 650; }
.kef-promo:hover { border-color: var(--coral); color: var(--coral-deep); }
.kef-tabs { display: flex; gap: .5rem; overflow-x: auto; padding: .3rem .1rem .8rem;
  margin: 1rem 0 1.2rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.kef-tab { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .1rem; min-width: 3.4rem; min-height: 2.75rem; padding: .4rem .7rem;
  border-radius: 14px; background: var(--paper-2); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); scroll-snap-align: start; }
.kef-tab:hover { border-color: var(--coral); }
.kef-tab-sel { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.kef-tab-label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.kef-empty { padding: .2rem 0 .6rem; }
.kef-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1rem; }
.kef-card { display: flex; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 1rem; }
.kef-photo { flex: none; width: 90px; height: 90px; border-radius: 12px; overflow: hidden; }
.kef-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kef-body { min-width: 0; flex: 1; }
.kef-body h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.kef-deal { font-size: .88rem; color: var(--text-2); line-height: 1.4; margin-bottom: .4rem; }
.kef-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .4rem; }
.kef-chip-call { color: var(--coral-deep); background: color-mix(in srgb, var(--coral) 12%, transparent);
  border-color: color-mix(in srgb, var(--coral) 35%, transparent); }
.kef-loc { font-size: .8rem; margin-bottom: .5rem; }
.kef-loc a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
.kef-sent-bar { height: 7px; border-radius: 4px; margin-bottom: .3rem;
  background: color-mix(in srgb, var(--ink) 10%, transparent); overflow: hidden; }
.kef-sent-bar i { display: block; height: 100%; }
.kef-sent.tone-quiet .kef-sent-bar i { background: linear-gradient(90deg, #6FBCC3, #3E9AA1); }
.kef-sent.tone-warm .kef-sent-bar i { background: linear-gradient(90deg, #E6C26B, #D69326); }
.kef-sent.tone-hot .kef-sent-bar i { background: linear-gradient(90deg, var(--gold), var(--coral)); }
.kef-sent-label { font-size: .8rem; font-weight: 700; }
.kef-sent.tone-quiet .kef-sent-label { color: #2E7E85; }
.kef-sent.tone-warm .kef-sent-label { color: #B87817; }
.kef-sent.tone-hot .kef-sent-label { color: var(--coral-deep); }
@media (max-width: 640px) {
  .kef-card { flex-direction: column; }
  .kef-photo { width: 100%; height: 140px; }
}

/* ---- Round 16: /discounts deal-first cards (kef-card minus photo/sentiment)
   + Round 17 design pass: hero band, kind tints, featured anchor card ---- */
/* Hero band: breaks out of the .section/.shell padding to run edge-to-edge
   under the nav (rounded bottom, brand shape). The harbor-ink
   background-color underneath is the graceful fallback: the band stays
   on-brand and readable even if /img/discounts-hero.webp 404s. */
.disc-hero { position: relative; overflow: hidden;
  margin: calc(-1 * clamp(2.5rem, 6vw, 4.5rem)) calc(-1 * clamp(1.1rem, 4vw, 2.5rem)) 1.8rem;
  padding: clamp(3rem, 8vw, 5.2rem) clamp(1.1rem, 4vw, 2.5rem) clamp(1.8rem, 5vw, 2.9rem);
  border-radius: 0 0 22px 22px; background-color: var(--ink);
  background-image: url("/img/discounts-hero.webp");
  background-size: cover; background-position: center; }
.disc-hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,29,43,.40) 0%, rgba(12,29,43,.28) 45%, rgba(12,29,43,.82) 100%); }
.disc-hero-inner { position: relative; color: var(--paper); }
.disc-hero-inner h1 { color: var(--paper); font-size: clamp(2rem, 5.5vw, 3.2rem);
  text-shadow: 0 2px 26px rgba(12,29,43,.55); text-wrap: balance; }
.disc-hero-dek { margin-top: .7rem; max-width: 62ch; font-size: .95rem;
  color: rgba(251,247,240,.88); text-shadow: 0 1px 16px rgba(12,29,43,.6); }
.disc-season-note { color: var(--text-2); font-size: .85rem; font-style: italic; margin: .2rem 0 .9rem; }
.disc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem; margin-bottom: 1.4rem; }
.disc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--gold); border-radius: 18px; padding: 1.1rem 1.1rem .95rem;
  transition: transform .18s ease, box-shadow .18s ease; }
.disc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(12,29,43,.1); }
.disc-card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
/* kind accents: same family as the sentiment/badge palette already in use */
.disc-kind-attraction { border-top-color: var(--coral); }
.disc-kind-program { border-top-color: #3E9AA1; }
.disc-kind-retail { border-top-color: var(--gold); }
.disc-kind-service { border-top-color: var(--ink-2); }
.chip-kind-attraction { color: var(--coral-deep); background: color-mix(in srgb, var(--coral) 12%, transparent);
  border-color: color-mix(in srgb, var(--coral) 35%, transparent); }
.chip-kind-program { color: #2E7E85; background: color-mix(in srgb, #3E9AA1 14%, transparent);
  border-color: color-mix(in srgb, #3E9AA1 35%, transparent); }
.chip-kind-retail { color: #8a6f35; background: color-mix(in srgb, var(--gold) 18%, transparent);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent); }
.chip-kind-service { color: var(--paper); background: var(--ink-2); border-color: var(--ink-2); }
/* the deal line is the card's visual hero: serif display, ink, roomy */
.disc-deal { font-family: var(--display); font-size: 1.16rem; font-weight: 600; color: var(--ink);
  line-height: 1.3; letter-spacing: -.01em; margin-bottom: .45rem; }
.disc-details { font-size: .82rem; color: var(--text-2); line-height: 1.45; margin-bottom: .4rem; }
.disc-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  margin-top: auto; padding-top: .4rem; }
.disc-verified { font-size: .74rem; color: var(--text-2); font-weight: 600; }
.disc-check { display: inline-flex; align-items: center; justify-content: center;
  width: .95rem; height: .95rem; border-radius: 50%; font-size: .62rem; vertical-align: -2px;
  margin-right: .15rem; color: #2E7E85; background: color-mix(in srgb, #3E9AA1 16%, transparent); }
.disc-src { font-size: .74rem; font-weight: 700; color: var(--coral-deep); text-decoration: none;
  border: 1px solid var(--line); background: var(--paper-2); border-radius: 100px; padding: .22rem .75rem; }
.disc-src:hover { border-color: var(--coral); background: color-mix(in srgb, var(--coral) 10%, var(--paper-2)); }
/* featured anchor (first current-season entry): full-width, coral accent,
   server-computed "Ends <Mon D>" chip */
.disc-featured { grid-column: 1 / -1; border-top: 4px solid var(--coral);
  border-color: color-mix(in srgb, var(--coral) 40%, var(--line)); border-top-color: var(--coral);
  background: linear-gradient(135deg, #fff 55%, color-mix(in srgb, var(--coral) 7%, #fff)); }
.disc-featured h3 { font-size: 1.25rem; }
.disc-featured .disc-deal { font-size: 1.34rem; }
.chip-ends { color: #fff; background: var(--coral); border-color: var(--coral); font-weight: 700; }
.disc-events { margin-bottom: 1.4rem; }
.disc-free-line { margin-top: .8rem; font-size: .9rem; }
.disc-free-line a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
@media (max-width: 640px) {
  .disc-hero { padding-top: 2.4rem; padding-bottom: 1.4rem; border-radius: 0 0 16px 16px; }
  .disc-hero-dek { font-size: .88rem; }
  .disc-deal { font-size: 1.08rem; }
  .disc-featured .disc-deal { font-size: 1.16rem; }
}

/* ---- Round 9: /parks index + deep-dive guide pages ---- */
.prk-grid { margin-top: .4rem; }
.prk-sent-bar { height: 7px; border-radius: 4px; margin: .3rem 0 .3rem;
  background: color-mix(in srgb, var(--ink) 10%, transparent); overflow: hidden; }
.prk-sent-bar i { display: block; height: 100%; }
.prk-sent.tone-quiet .prk-sent-bar i { background: linear-gradient(90deg, #6FBCC3, #3E9AA1); }
.prk-sent.tone-warm .prk-sent-bar i { background: linear-gradient(90deg, #E6C26B, #D69326); }
.prk-sent.tone-hot .prk-sent-bar i { background: linear-gradient(90deg, var(--gold), var(--coral)); }
.prk-sent-label { font-size: .8rem; font-weight: 700; }
.prk-sent.tone-quiet .prk-sent-label { color: #2E7E85; }
.prk-sent.tone-warm .prk-sent-label { color: #B87817; }
.prk-sent.tone-hot .prk-sent-label { color: var(--coral-deep); }
.prk-loc { font-size: .8rem; margin-top: .2rem; }
.prk-loc a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
.prk-footer-note { margin-top: 1.4rem; }

/* ---- Round 10: guide-section bullets (was paragraph walls) ---- */
.prk-list { list-style: none; margin: .7rem 0 1.1rem; padding: 0; }
.prk-list li { line-height: 1.55; margin-bottom: .6rem;
  padding-left: 1.6em; text-indent: -1.6em; }
.prk-list li:last-child { margin-bottom: 0; }
.prk-list li strong { color: var(--ink); }
@media (max-width: 640px) {
  .prk-list { margin: .6rem 0 1rem; }
  .prk-list li { margin-bottom: .5rem; }
}

/* ---- Round 13 (2026-07-20): guide-page "Quick answers" link row to the
   /parks/<park>/<question> answer pages ---- */
.prk-quick-answers { margin: .6rem 0 1.2rem; font-size: .92rem; }
.prk-quick-label { font-weight: 700; color: var(--ink); margin-right: .3rem; }
.prk-quick-answers a { color: var(--coral-deep); font-weight: 600; text-decoration: none; }
.prk-quick-answers a:hover { text-decoration: underline; }

/* ---- Round 11 (2026-07-20): /today in real site markup, not email HTML.
   .evc = the shared event-card look (src/eventcards.js) for /today AND
   /calendar day views — distinct white rounded cards, never a forked
   visual between the two pages. .today-tip mirrors the owner's existing
   region "radio brief" callout look; .evc-cathead mirrors the email's
   uppercase gold category mini-headers (STORYTIME etc.) in real markup. */
.evc { display: flex; gap: .85rem; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: .85rem 1rem; margin: 0 0 .65rem; }
.evc-photo { flex: none; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; }
.evc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evc-body { min-width: 0; flex: 1; }
.evc-title { font-family: var(--display); font-size: 1.02rem; line-height: 1.3; }
.evc-title a { color: var(--ink); text-decoration: none; }
.evc-title a:hover { color: var(--coral-deep); }
.evc-meta { color: var(--text-2); font-size: .82rem; margin-top: .2rem; }
.evc-hook { color: var(--text); font-size: .86rem; line-height: 1.4; margin-top: .35rem; }
.evc-picks { color: var(--text-2); font-style: italic; font-size: .78rem; margin-top: .35rem; }
.evc-cathead { font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #8a6f35; margin: 1.4rem 0 .5rem; }
.today-tip { background: var(--paper-2); border-radius: 10px; padding: .6rem .9rem;
  font-size: .88rem; margin: .2rem 0 1rem; }
@media (max-width: 640px) {
  .evc { gap: .6rem; padding: .7rem .8rem; }
  .evc-photo { width: 48px; height: 48px; }
}
/* /calendar day view: same .evc card, a touch denser at rest so a busy day
   doesn't scroll forever — still reads as distinct cards, never rows. */
.cal-events .evc { padding: .65rem .85rem; margin-bottom: .5rem; }

/* /today page travel-corner chip (site twin of the email's table version) */
.today-staydeal { display: block; background: var(--ink); color: var(--paper); border-radius: 10px;
  padding: .75rem .9rem; margin-top: 1rem; font-size: .92rem; }
.today-staydeal a { color: var(--gold); }
.today-staydeal-kicker { display: block; font-family: var(--display); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .15rem; }

.footer-ig { display: inline-flex; align-items: center; gap: .4rem; color: var(--coral) !important;
  font-weight: 600; margin: .35rem 0 .15rem; }
.footer-ig svg { flex-shrink: 0; }

/* Today's Picks (2026-07-21): homepage teases 6 tiles; the see-all button
   carries the real live count and hands off to /today. */
.today-all-wrap { text-align: center; margin: 1.4rem 0 .2rem; }
.today-all-btn { display: inline-block; background: var(--coral, #E8735A); color: #fff;
  font-weight: 700; padding: .75rem 1.6rem; border-radius: 100px; text-decoration: none;
  box-shadow: 0 6px 18px rgba(232,115,90,.35); transition: transform .15s ease, box-shadow .15s ease; }
.today-all-btn:hover { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(232,115,90,.45); }

/* Filter bar (spec B1, 2026-07-24) */
.filter-bar{margin:14px 0 18px;}
.fb-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:8px;}
.fb-chip{border:1px solid #d9d2c7;border-radius:100px;padding:5px 14px;font-size:.88rem;
 color:#0C1D2B;text-decoration:none;background:#fff;}
.fb-chip.on{background:#E8735A;border-color:#E8735A;color:#fff;font-weight:600;}
.fb-search{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px;}
.fb-search input{flex:1;min-width:0;max-width:340px;border:1px solid #d9d2c7;border-radius:8px;padding:7px 12px;}
.fb-search button{border:0;border-radius:8px;background:#0C1D2B;color:#fff;padding:7px 16px;cursor:pointer;}

/* ---- Ask MomsAlike concierge (spec B2) ---- */
.ask-fab { position: fixed; right: 16px; bottom: 16px; z-index: 60; background: #0C1D2B;
  color: #FBF7F0; border: 0; border-radius: 999px; padding: 12px 18px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(12,29,43,.35); cursor: pointer; }
.ask-panel { position: fixed; right: 16px; bottom: 68px; z-index: 60; width: min(360px, calc(100vw - 32px));
  background: #fff; border: 1px solid #e5ddd3; border-radius: 14px; box-shadow: 0 8px 28px rgba(12,29,43,.25);
  display: flex; flex-direction: column; max-height: 70vh; }
.ask-panel[hidden] { display: none; }
.ask-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px;
  font-weight: 700; border-bottom: 1px solid #eee; }
.ask-close { border: 0; background: none; font-size: 20px; cursor: pointer; line-height: 1; }
.ask-head-btns { display: flex; align-items: center; gap: 10px; }
.ask-reset { border: 0; background: none; font-size: 11px; font-weight: 400; color: #8a8177;
  cursor: pointer; text-decoration: underline; padding: 0; }
.ask-log { overflow-y: auto; padding: 10px 14px; display: flex; flex-direction: column; gap: 8px; min-height: 40px; }
.ask-msg { padding: 8px 12px; border-radius: 10px; font-size: 14px; line-height: 1.45; white-space: pre-wrap; }
.ask-q { background: #0C1D2B; color: #FBF7F0; align-self: flex-end; }
.ask-a { background: #F4EFE8; align-self: flex-start; }
.ask-wait { opacity: .7; font-style: italic; }
.ask-form { display: flex; gap: 6px; padding: 10px 14px 4px; }
.ask-input { flex: 1; border: 1px solid #d9d0c4; border-radius: 8px; padding: 8px 10px; font-size: 14px; }
.ask-send { background: #E8735A; color: #fff; border: 0; border-radius: 8px; padding: 8px 14px; font-weight: 700; cursor: pointer; }
.ask-note { margin: 0; padding: 0 14px 10px; font-size: 11px; color: #8a8177; }

/* ---- Browse everything (2026-08-18, V7): one grid over events, parks,
   kids-eat-free deals and venues. Filters are plain links so the page works
   with no JavaScript; .fchip is reused from the existing filter bar rather
   than forking a second chip style. ---- */
.browse-search { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 .4rem; max-width: 32rem; }
.browse-search input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1rem; background: #fff; }
.browse-search button { border: 1px solid var(--coral); background: var(--coral); color: #fff;
  border-radius: 100px; padding: .5rem 1.2rem; font-weight: 600; }
.browse-search button:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.browse-filters { display: flex; flex-direction: column; gap: .5rem; margin: .8rem 0 1rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.chip-label { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2); min-width: 4.4rem; }
.browse-tally { margin-bottom: .8rem; }
.browse-grid { list-style: none; display: grid; gap: .9rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); margin: .4rem 0 2rem; }
.bcard a { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease; }
.bcard a:hover { border-color: var(--coral); transform: translateY(-2px); }
.bc-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.bc-photo-none { background: linear-gradient(135deg, var(--paper-2), color-mix(in srgb, var(--gold) 22%, var(--paper-2))); }
.bc-kind { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral-deep); padding: .7rem .9rem 0; }
.bc-title { font-family: var(--display); font-size: 1.05rem; line-height: 1.25; padding: .15rem .9rem 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bc-meta { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--text-2);
  padding: .45rem .9rem .9rem; margin-top: auto; }

/* ---- Saved day plans (2026-08-18): /plan/<token>, always noindex ---- */
.plan-lines { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 1rem 0 1.6rem; }
.plan-lines li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--coral);
  border-radius: 10px; padding: .8rem 1rem; }
.plan-email { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin: 1.2rem 0;
  padding: 1rem; background: var(--paper-2); border-radius: 12px; }
.plan-email label { flex-basis: 100%; font-weight: 600; font-size: .9rem; }
.plan-email input { flex: 1; min-width: 12rem; border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1rem; background: #fff; }
.plan-email button { border-radius: 100px; padding: .5rem 1.2rem; font-weight: 600;
  background: var(--coral); color: #fff; }
.plan-email button:hover { background: var(--coral-deep); }
.ask-save { margin-top: .5rem; font-size: .84rem; font-weight: 600; color: var(--coral-deep);
  text-decoration: underline; background: none; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- V7 paint (2026-08-19): hero ask bar, scalloped edge, footer marquee,
   Marge. The concierge becomes the front door, but the bar is a plain GET
   form onto /browse until site.js upgrades it, so the hero never depends on
   JavaScript or the LLM chain being up. ---- */
.hero-ask { display: flex; gap: .55rem; max-width: 34rem; margin: 1.4rem 0 .8rem; }
.hero-ask input { flex: 1; border: 0; border-radius: 100px; padding: .8rem 1.25rem;
  background: rgba(251,247,240,.96); color: var(--ink); font-size: 1rem;
  box-shadow: 0 6px 24px rgba(12,29,43,.25); }
.hero-ask input::placeholder { color: var(--text-2); }
.hero-ask input:focus { outline: 3px solid color-mix(in srgb, var(--coral) 60%, transparent); }
.hero-ask .btn { border-radius: 100px; white-space: nowrap; }
.hero-tries { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.hero-tries a { font-size: .82rem; font-weight: 600; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.45); border-radius: 100px; padding: .3rem .85rem;
  background: rgba(12,29,43,.35); backdrop-filter: blur(3px); }
.hero-tries a:hover { background: var(--coral); border-color: var(--coral); }
.hero-mail { color: #fff; }
@media (max-width: 560px) {
  .hero-ask { flex-direction: column; }
  .hero-ask .btn { align-self: flex-start; }
}

/* Scalloped edge: the V7 "drawn world" divider, pure CSS so it costs no
   asset. A row of paper-colored half-circles overlapping the hero bottom. */
.scallop { height: 22px; margin-top: -22px; position: relative; z-index: 2;
  background: radial-gradient(circle at 50% 100%, var(--paper) 0 10px, transparent 11px);
  background-size: 28px 22px; background-repeat: repeat-x; background-position: bottom; }

/* Footer marquee: Poolsuite hum. Reduced-motion shows it static. */
.marq { overflow: hidden; background: var(--ink); color: var(--paper);
  border-top: 3px solid var(--coral); padding: .55rem 0; }
.marq-track { display: inline-flex; gap: 1.1rem; white-space: nowrap; align-items: baseline;
  font-family: var(--display); font-style: italic; font-size: .95rem; letter-spacing: .04em;
  animation: marq 36s linear infinite; will-change: transform; }
.marq-dot { color: var(--coral); font-style: normal; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marq-track { animation: none; } }

/* Marge, Florida's most unbothered mom. Floats by the ask panel head and in
   the footer; a missing asset renders nothing rather than a broken box. */
.marge { display: block; width: 92px; height: auto; margin: 0 auto .4rem; }
.footer .marge { width: 76px; opacity: .95; }
.ask-head .marge-mini { width: 34px; height: 34px; vertical-align: middle;
  margin-right: .45rem; border-radius: 50%; object-fit: cover; background: var(--paper-2); }
.bcard .bc-still { display: flex; flex-direction: column; height: 100%; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }

/* Hallmark · component: hero · genre: playful · theme: project tokens (Fraunces + Inter, paper/ink/coral)
 * V8 hero (2026-09-05): the cinematic slideshow finished. Three real credited
 * photographs as <img> slides (responsive srcset, first one is the LCP),
 * crossfade + Ken Burns from the existing slidecycle/kenburns keyframes,
 * credits that cycle in step with the slides, a deeper bottom-left scrim so
 * Fraunces stays legible on every frame, and a foot row that seats the
 * region note and the credit on one baseline. Pure CSS; no script.
 * pre-emit critique: P4 H5 E4 S4 R5 V4 · italic <em> kept: brand wordmark is italic Fraunces. */
.hero-v8 { min-height: clamp(560px, 84dvh, 900px); align-items: flex-end; isolation: isolate; }
.hero-v8 .slide { width: 112%; height: 112%; object-fit: cover; object-position: center 40%; }
.hero-v8 .hero-scrim { background:
    linear-gradient(180deg, rgba(12,29,43,.38) 0%, rgba(12,29,43,.12) 34%, rgba(12,29,43,.58) 66%, rgba(12,29,43,.92) 100%),
    linear-gradient(90deg, rgba(12,29,43,.62) 0%, rgba(12,29,43,.28) 46%, rgba(12,29,43,.04) 100%); }
.hero-v8 .hero-inner { padding-top: 8rem; padding-bottom: clamp(1.6rem, 4vw, 2.6rem); width: 100%; text-align: center; }
.hero-v8 h1 { font-size: clamp(2.6rem, 7.2vw, 5.1rem); max-width: 13ch; margin-inline: auto; line-height: 1.02; letter-spacing: -.02em;
  font-weight: 500; font-variation-settings: "opsz" 144; text-shadow: 0 2px 34px rgba(12,29,43,.6); }
.hero-v8 .hero-inner > p { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 42ch; margin: 1rem auto 0; }
.hero-v8 .hero-ask { max-width: 38rem; margin: 1.6rem auto .9rem; text-align: left; padding: .35rem; border-radius: 100px;
  background: rgba(251,247,240,.14); border: 1px solid rgba(251,247,240,.28); backdrop-filter: blur(10px); }
.hero-v8 .hero-ask input { box-shadow: none; padding: .85rem 1.3rem; }
.hero-v8 .hero-ask .btn { padding: .85rem 1.5rem; }
.hero-v8 .hero-tries { margin-bottom: 1.6rem; justify-content: center; }
.hero-v8 .hero-foot { display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding-top: 1rem; border-top: 1px solid rgba(251,247,240,.18); }
.hero-v8 .hero-note { margin-top: 0; flex: 0 0 auto; max-width: none; }
.hero-credits { position: relative; min-height: 1.2em; width: 100%; text-align: center; font-size: .72rem;
  letter-spacing: .02em; color: rgba(251,247,240,.62); }
.hero-v8 .hero-credit { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); white-space: nowrap;
  color: inherit; text-decoration: none; opacity: 0; animation: slidecycle 24s infinite; }
.hero-credit:nth-child(1) { animation-delay: 0s; }
.hero-credit:nth-child(2) { animation-delay: 8s; }
.hero-credit:nth-child(3) { animation-delay: 16s; }
.hero-credit:hover, .hero-credit:focus-visible { color: var(--paper); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .hero-credit { animation: none; }
  .hero-credit:first-child { opacity: 1; }
}
@media (max-width: 720px) {
  .hero-v8 { min-height: clamp(520px, 78dvh, 760px); }
  .hero-v8 .hero-inner { padding-top: 6.5rem; }
  .hero-v8 .hero-ask { border-radius: 24px; }
  .hero-v8 .hero-ask .btn { align-self: stretch; text-align: center; }
  .hero-v8 .hero-note { max-width: 100%; min-width: 0; }
}

/* ---- Local Deals (2026-09-05) ---- */
.deal-card .deal-merchant { display: block; font-weight: 700; color: var(--ink-2); margin-top: .35rem; }
.deal-terms { margin-top: .5rem; font-size: 1.05rem; }
.deal-price { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--coral-deep); }
.deal-reg { color: var(--text-2); margin-left: .35rem; }
.deal-save { display: inline-block; margin-left: .5rem; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); background: color-mix(in srgb, var(--gold) 35%, var(--paper-2)); border-radius: 100px; padding: .15rem .6rem; }
.deal-ends { font-size: .82rem; color: var(--text-2); margin-top: .25rem; }
.deal-cta { display: inline-block; margin-top: .7rem; font-weight: 700; font-size: .95rem; color: var(--coral-deep); text-decoration: none; }
.deal-cta:hover, .deal-cta:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.deal-source a { color: var(--text-2); text-decoration: underline dotted; text-underline-offset: 3px; }
.deal-source a:hover { color: var(--ink); }
.deal-source { font-size: .74rem; color: var(--text-2); margin-top: .6rem; }
.deal-photo-credit { position: absolute; right: .5rem; bottom: .4rem; font-size: .62rem; color: rgba(255,255,255,.8); text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.deal-grid .card-photo { position: relative; }
.deal-cross-line { margin: 1rem 0; font-size: .95rem; }
.deal-cross-line a { color: var(--coral-deep); font-weight: 650; }

/* ---- Standards 2026-09-05 rule 11: touch targets and focus ---- */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
@media (hover: none) and (pointer: coarse) {
  .chip, .hero-tries a, .nav-links a, .foot-links a, .deal-cta { min-height: 44px; display: inline-flex; align-items: center; }
}

/* Sprint 2: the homepage's single cross-link line (replaces two banners, the region tiles and Travel Corner). */
.more-line { margin-top: 1.2rem; font-size: .95rem; color: var(--text-2); }
.more-line a { color: var(--coral-deep); font-weight: 650; text-decoration: none; }
.more-line a:hover { text-decoration: underline; }
.foot-legal { margin-top: .6rem; font-size: .82em; }
.foot-legal a { margin-right: .6rem; }
