:root {
  --bg: #08090b;
  --panel: rgba(18, 20, 26, 0.84);
  --panel-strong: rgba(24, 27, 34, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --line-bright: rgba(255, 255, 255, 0.28);
  --text: #f4f5f7;
  --muted: rgba(244, 245, 247, 0.68);
  --soft: rgba(244, 245, 247, 0.46);
  --accent: #ff2d76;
  --cyan: #77f3ff;
  --lime: #d6ff6d;
  --amber: #ffd27a;
  --violet: #a997ff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --cursor-x: 50vw;
  --cursor-y: 20vh;
  --page-gutter: clamp(16px, 3vw, 56px);
  --section-y: clamp(34px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255, 45, 118, 0.16), transparent 34rem),
    linear-gradient(115deg, #050506 0%, #0b0f14 46%, #050506 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

/* 2026 cinematic weekly edition */
:root {
  --bg: #050607;
  --panel: rgba(12, 14, 16, 0.86);
  --text: #f3efe7;
  --muted: rgba(243, 239, 231, 0.7);
  --accent: #ff5a36;
  --cyan: #9ee8de;
  --lime: #c9ff78;
  --amber: #f0c778;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 54, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 32%, rgba(50, 107, 116, 0.16), transparent 36rem),
    #050607;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

h1, h2, .week-cover h3, .cover-number {
  font-family: "Quicksand", "DM Sans", sans-serif;
  letter-spacing: -0.035em;
}

.topbar {
  min-height: 78px;
  border-color: rgba(255,255,255,.08);
  background: rgba(5, 6, 7, 0.76);
  backdrop-filter: blur(24px) saturate(1.25);
}

.nav-links a {
  border: 0;
  background: transparent;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero {
  min-height: min(850px, 84vh);
  align-items: end;
  isolation: isolate;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.48) 48%, rgba(5,6,7,.14)),
    linear-gradient(0deg, #050607 0%, transparent 48%),
    url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2400&q=92") center 42%/cover;
  opacity: .92;
  transform: scale(1.03);
  animation: heroCinema 14s ease-out both;
}

.hero::after {
  content: "SEATTLE / WEEKLY EDIT";
  position: absolute;
  right: var(--page-gutter);
  top: 50%;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .28em;
}

.hero-copy { padding-bottom: 3vh; }
.hero h1 { font-size: clamp(58px, 8vw, 132px); max-width: 980px; line-height: .88; }
.hero .lead { max-width: 650px; font-size: clamp(16px, 1.4vw, 21px); }
.hero-panel { max-width: 360px; justify-self: end; }
.metric { border-radius: 999px; min-height: 132px; text-align: center; display: grid; place-content: center; }

@keyframes heroCinema {
  from { transform: scale(1.13); filter: saturate(.65) contrast(1.12); }
  to { transform: scale(1.03); filter: saturate(1) contrast(1.04); }
}

#weekly { padding-top: clamp(70px, 9vw, 150px); }
#weekly .section-header h2 { max-width: 820px; font-size: clamp(54px, 7vw, 112px); }
#weekly .section-header > p { font-size: 17px; line-height: 1.7; }

.week-edition-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  margin: 24px 0 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
}
.week-edition-bar strong { color: var(--text); font-size: 13px; font-weight: 500; }
.week-edition-bar > span { text-align: right; }
.live-dot { display:inline-block; width:7px; height:7px; margin-right:9px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 5px rgba(255,90,54,.12); animation: pulseLive 2s infinite; }
@keyframes pulseLive { 50% { box-shadow:0 0 0 10px rgba(255,90,54,0); } }

.week-cover {
  position: relative;
  min-height: clamp(540px, 67vw, 900px);
  background-size: cover;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: end;
  box-shadow: 0 45px 120px rgba(0,0,0,.48);
}
.week-cover::before { content:""; position:absolute; inset:0; background:linear-gradient(115deg, rgba(2,3,4,.96) 3%, rgba(2,3,4,.54) 48%, rgba(2,3,4,.08) 78%), linear-gradient(0deg, rgba(2,3,4,.88), transparent 56%); }
.week-cover-shade { position:absolute; inset:0; background:linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.14) 50%, transparent 50.2%); mix-blend-mode:overlay; }
.week-cover-copy { position:relative; width:min(760px, 78%); padding:clamp(30px, 6vw, 90px); z-index:1; }
.week-cover h3 { font-size:clamp(54px, 8vw, 128px); line-height:.9; margin-bottom:24px; }
.week-cover-copy > p:not(.eyebrow) { max-width:680px; font-size:clamp(15px, 1.45vw, 20px); line-height:1.65; color:rgba(255,255,255,.78); }
.week-cover .meta { margin:24px 0; gap:18px; text-transform:uppercase; letter-spacing:.07em; font-size:11px; }
.cover-number { position:absolute; right:3vw; top:2vw; font-size:clamp(88px, 20vw, 300px); color:rgba(255,255,255,.09); line-height:1; }

.weekly-event-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:clamp(18px,2.4vw,38px); margin:clamp(55px,8vw,120px) 0; }
.weekly-event-card { grid-column:span 6; border-top:1px solid rgba(255,255,255,.18); padding-top:15px; animation: cardArrival .75s both; animation-delay:var(--delay); }
.weekly-event-card:nth-child(3n) { grid-column:3 / span 8; }
.weekly-event-image { position:relative; display:block; aspect-ratio:16/10; background-size:cover; overflow:hidden; filter:saturate(.82); transition:filter .55s, transform .55s; }
.weekly-event-image::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.5),transparent 45%); }
.weekly-event-card:hover .weekly-event-image { filter:saturate(1.12); transform:translateY(-5px); }
.editorial-stamp { position:absolute; z-index:2; left:16px; top:16px; padding:8px 10px; background:rgba(5,6,7,.78); backdrop-filter:blur(10px); font-size:9px; letter-spacing:.14em; }
.event-date-block { position:absolute; z-index:2; right:16px; bottom:13px; text-align:center; text-transform:uppercase; font-size:10px; letter-spacing:.15em; }
.event-date-block b { display:block; font-family:"Quicksand","DM Sans",sans-serif; font-size:48px; line-height:.8; }
.weekly-event-copy { padding:24px 4px 12px; }
.weekly-event-copy h3 { font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(30px,3vw,49px); margin:14px 0; }
.weekly-event-copy p { color:var(--muted); line-height:1.65; }
@keyframes cardArrival { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:none; } }

.event-archive { border-top:1px solid rgba(255,255,255,.22); border-bottom:1px solid rgba(255,255,255,.22); margin-top:80px; }
.event-archive summary { list-style:none; display:grid; grid-template-columns:1fr auto 40px; align-items:center; gap:22px; padding:30px 0; cursor:pointer; }
.event-archive summary::-webkit-details-marker { display:none; }
.event-archive summary span { font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(32px,4vw,56px); }
.event-archive summary small { display:block; font-family:"DM Sans",sans-serif; font-size:9px; letter-spacing:.2em; color:var(--accent); margin-bottom:8px; }
.event-archive summary b { color:var(--muted); font-weight:400; }
.event-archive summary i { font-size:30px; font-style:normal; transition:transform .3s; }
.event-archive[open] summary i { transform:rotate(45deg); }
.archive-intro { max-width:640px; color:var(--muted); line-height:1.7; }
.archive-list { padding:30px 0 50px; }
.archive-list a { display:grid; grid-template-columns:minmax(180px,.75fr) 1.8fr 1fr 24px; align-items:center; gap:18px; padding:19px 0; border-top:1px solid rgba(255,255,255,.09); transition:padding .25s, color .25s; }
.archive-list a:hover { padding-left:12px; color:var(--cyan); }
.archive-list time,.archive-list span { color:var(--muted); font-size:12px; }

#guides { padding-top:clamp(80px,10vw,160px); }
#guides .section-header h2 { font-size:clamp(46px,6vw,90px); max-width:850px; }
.guide-grid { gap:clamp(22px,3vw,48px); }
.guide-card { background:transparent; border-color:rgba(255,255,255,.14); box-shadow:none; }
.guide-image { aspect-ratio:16/11; filter:saturate(.75) contrast(1.04); transition:filter .45s, transform .45s; }
.guide-card:hover .guide-image { filter:saturate(1.1); transform:scale(.985); }
.guide-card-body h3 { font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(28px,3vw,44px); }

@media (max-width: 760px) {
  .hero { grid-template-columns:1fr; min-height:760px; }
  .hero-panel { justify-self:start; }
  .week-edition-bar { grid-template-columns:1fr; }
  .week-edition-bar > span { text-align:left; }
  .week-cover { min-height:680px; background-position:center; }
  .week-cover-copy { width:100%; padding:28px 20px; }
  .week-cover h3 { font-size:55px; }
  .cover-number { font-size:110px; }
  .weekly-event-card,.weekly-event-card:nth-child(3n) { grid-column:1 / -1; }
  .archive-list a { grid-template-columns:1fr 26px; }
  .archive-list time,.archive-list span { grid-column:1; }
  .archive-list i { grid-column:2; grid-row:1 / span 3; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,.weekly-event-card,.live-dot { animation:none !important; }
  * { scroll-behavior:auto !important; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(520px circle at var(--cursor-x) var(--cursor-y), rgba(119, 243, 255, 0.13), transparent 42%),
    radial-gradient(360px circle at calc(var(--cursor-x) + 90px) calc(var(--cursor-y) + 40px), rgba(255, 45, 118, 0.1), transparent 48%);
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line-bright);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 4px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

button:hover,
.button:hover {
  border-color: var(--accent);
  background: rgba(255, 45, 118, 0.15);
  transform: translateY(-1px);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(8, 9, 11, 0.86);
  backdrop-filter: blur(18px);
  padding: 10px var(--page-gutter);
}

.brand {
  display: grid;
  gap: 2px;
  align-items: center;
  line-height: 1;
  min-width: 158px;
}

.brand img {
  display: block;
  width: 152px;
  height: auto;
  object-fit: contain;
}

.brand span,
.brand-city {
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.language-tools select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--text);
}

.nav-links a:hover {
  border-color: var(--accent);
}

.language-tools {
  display: flex;
  gap: 8px;
  align-items: center;
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.01;
  pointer-events: none;
}

.goog-te-gadget {
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#google_translate_element *,
.goog-te-combo,
.goog-logo-link,
.goog-te-gadget span {
  position: fixed !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  max-width: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

.app {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 3vw, 54px);
  min-height: clamp(520px, 42vw, 720px);
  padding: clamp(46px, 5vw, 84px) var(--page-gutter) clamp(28px, 3vw, 52px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.62), rgba(8, 9, 11, 0.22)),
    url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2200&q=80") center/cover;
  opacity: 0.74;
}

.hero > * {
  position: relative;
}

.hero-copy {
  align-self: end;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.3vw, 96px);
  line-height: 0.96;
  font-weight: 400;
}

h2 {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.02;
  font-weight: 400;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
}

.lead {
  color: var(--muted);
  max-width: 720px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-actions .button,
.detail-actions .button {
  min-width: 118px;
}

.primary {
  border-color: var(--accent);
  background: rgba(255, 45, 118, 0.24);
}

.hero-panel {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.58);
  backdrop-filter: blur(16px);
  padding: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.metric::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 74px;
  background: linear-gradient(90deg, transparent, rgba(119, 243, 255, 0.16), rgba(255, 45, 118, 0.12), transparent);
  transform: translateX(-55%);
  animation: metricSweep 3.6s ease-in-out infinite;
}

.metric:hover {
  border-color: rgba(119, 243, 255, 0.44);
  transform: translateY(-2px);
}

.metric strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 30px;
  font-weight: 400;
}

.metric span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.35;
}

@keyframes metricSweep {
  0%, 42% { transform: translateX(-65%); opacity: 0; }
  58% { opacity: 1; }
  100% { transform: translateX(65%); opacity: 0; }
}

.section {
  padding: var(--section-y) var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: end;
  margin-bottom: clamp(22px, 2.6vw, 38px);
}

.section-header p {
  color: var(--muted);
  line-height: 1.5;
}

.controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.weekly-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(14px, 2vw, 28px);
  margin-top: 18px;
}

.calendar-console,
.day-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(119, 243, 255, 0.055), transparent 34%),
    linear-gradient(315deg, rgba(255, 45, 118, 0.08), transparent 28%),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendar-console {
  padding: 14px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.calendar-toolbar h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.icon-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 26px;
  line-height: 1;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 12px;
  text-align: center;
}

.calendar-day {
  position: relative;
  display: grid;
  align-content: start;
  gap: 6px;
  grid-template-rows: auto 1fr auto;
  min-height: clamp(88px, 6vw, 132px);
  padding: 10px;
  text-align: left;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.calendar-day::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(119, 243, 255, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.calendar-day:hover::before,
.calendar-day.selected::before {
  opacity: 1;
}

.calendar-day.selected {
  border-color: var(--accent);
  background: rgba(255, 45, 118, 0.16);
}

.calendar-day.today .day-number {
  color: var(--lime);
}

.calendar-day.muted-day {
  opacity: 0.42;
}

.calendar-day.has-events {
  border-color: rgba(119, 243, 255, 0.28);
}

.day-number {
  position: relative;
  z-index: 1;
  font-size: 22px;
  color: var(--text);
}

.day-count {
  position: relative;
  z-index: 1;
  min-height: 16px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.day-dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-self: end;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.dot.food,
.dot.shopping {
  background: var(--lime);
}

.dot.music {
  background: var(--accent);
}

.dot.arts {
  background: var(--violet);
}

.dot.sports {
  background: var(--amber);
}

.day-panel {
  padding: 16px;
  min-height: min(620px, 48vw);
}

.day-panel-head {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.day-panel-head h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
}

.day-panel-head span {
  color: var(--soft);
}

.day-event-list {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.day-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.day-event-media {
  display: block;
  min-height: clamp(220px, 17vw, 340px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background-color: #15171c;
  background-size: cover;
  background-repeat: no-repeat;
}

.day-event-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.day-event-body h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.08;
}

.day-event-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.day-event-body .event-note {
  color: var(--soft);
  font-size: 15px;
}

.empty-day {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.search-input,
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 4px;
  padding: 12px;
  outline: 0;
}

.site-search-section {
  padding: clamp(24px, 3.4vw, 46px) var(--page-gutter) clamp(10px, 1.6vw, 22px);
}

.site-search-panel {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-search-input {
  min-height: 58px;
  border-color: rgba(16, 18, 20, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0 24px;
  box-shadow: 0 22px 58px rgba(20, 24, 28, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.site-search-input:focus {
  border-color: rgba(18, 168, 191, 0.42);
  box-shadow: 0 28px 76px rgba(20, 24, 28, 0.12), 0 0 0 5px rgba(18, 168, 191, 0.1);
}

.search-results {
  position: absolute;
  inset-inline: 16px;
  top: calc(100% + 10px);
  z-index: 20;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(16, 18, 20, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 244, 0.88)),
    rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(20, 24, 28, 0.14);
}

.search-results a,
.search-results p {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text);
}

.search-results a:hover {
  background: rgba(18, 168, 191, 0.08);
}

.search-results span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-results small {
  color: var(--soft);
  white-space: nowrap;
}

select option {
  color: #111;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 34px;
  color: var(--muted);
}

.chip.active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 45, 118, 0.2);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 450px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card.featured {
  grid-column: span 6;
  grid-row: span 2;
  grid-template-rows: 360px 1fr;
}

.card-image {
  position: relative;
  background: #16181d center/cover;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 9, 11, 0.82));
}

.card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--soft);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  padding: 4px 8px;
  color: var(--muted);
  border-radius: 4px;
  font-size: 12px;
}

.card p,
.guide-card p,
.archive-row p {
  color: var(--muted);
  line-height: 1.46;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stay-finder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 34px);
  min-height: 320px;
}

.stay-panel,
.guide-card,
.archive-row,
.detail-panel,
.message-panel,
.loading-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stay-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(20px, 4vw, 42px);
}

.stay-panel h3 {
  max-width: 620px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.02;
}

.stay-points {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.stay-points span {
  width: fit-content;
  border-left: 1px solid var(--accent);
  padding-left: 12px;
}

.stay-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(119, 243, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 72% 78%, rgba(255, 45, 118, 0.14), transparent 16rem),
    var(--panel);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  overflow: hidden;
  box-shadow: var(--shadow);
  perspective: 900px;
  transform-style: preserve-3d;
}

.stay-visual::before,
.stay-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(54vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(119, 243, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-16deg);
  animation: homeOrbit 8s linear infinite;
}

.stay-visual::after {
  width: min(38vw, 360px);
  border-color: rgba(255, 45, 118, 0.32);
  animation-duration: 11s;
  animation-direction: reverse;
}

.seattle-skyline {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  height: 150px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  opacity: 0.82;
}

.sky-building,
.space-needle-shape {
  display: block;
  width: clamp(26px, 4vw, 48px);
  height: 72px;
  border: 1px solid rgba(119, 243, 255, 0.26);
  background: linear-gradient(180deg, rgba(119, 243, 255, 0.18), rgba(8, 9, 11, 0.62));
  box-shadow: inset 0 0 18px rgba(119, 243, 255, 0.08);
}

.sky-building.tall {
  height: 126px;
}

.sky-building.mid {
  height: 96px;
}

.sky-building.wide {
  width: clamp(44px, 7vw, 82px);
  height: 64px;
}

.space-needle-shape {
  position: relative;
  width: 58px;
  height: 138px;
  border: 0;
  background: transparent;
}

.space-needle-shape::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 112px;
  background: linear-gradient(180deg, rgba(244, 245, 247, 0.72), rgba(119, 243, 255, 0.26));
  transform: translateX(-50%);
  box-shadow:
    -12px 24px 0 -10px rgba(244, 245, 247, 0.5),
    12px 24px 0 -10px rgba(244, 245, 247, 0.5);
}

.space-needle-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 58px;
  height: 14px;
  border: 1px solid rgba(244, 245, 247, 0.7);
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.5);
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(119, 243, 255, 0.28);
}

.furnished-home-card {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(58%, 260px);
  aspect-ratio: 1.35;
  border: 1px solid rgba(244, 245, 247, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    rgba(8, 9, 11, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 0 34px rgba(119, 243, 255, 0.08);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  animation: homeCardDrift 7s ease-in-out infinite;
}

.home-window,
.home-sofa,
.home-lamp,
.home-key {
  position: absolute;
  display: block;
}

.home-window {
  left: 11%;
  top: 14%;
  width: 36%;
  height: 36%;
  border: 1px solid rgba(119, 243, 255, 0.46);
  background:
    linear-gradient(90deg, transparent 48%, rgba(119, 243, 255, 0.3) 49%, rgba(119, 243, 255, 0.3) 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(119, 243, 255, 0.3) 49%, rgba(119, 243, 255, 0.3) 51%, transparent 52%),
    rgba(119, 243, 255, 0.08);
}

.home-sofa {
  left: 12%;
  bottom: 18%;
  width: 52%;
  height: 18%;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(90deg, rgba(255, 45, 118, 0.62), rgba(214, 255, 109, 0.48));
}

.home-sofa::before,
.home-sofa::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 8px;
  height: 6px;
  background: rgba(244, 245, 247, 0.42);
}

.home-sofa::before {
  left: 8px;
}

.home-sofa::after {
  right: 8px;
}

.home-lamp {
  right: 18%;
  bottom: 20%;
  width: 36px;
  height: 64px;
  border-bottom: 2px solid rgba(244, 245, 247, 0.5);
}

.home-lamp::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 42px;
  background: rgba(244, 245, 247, 0.44);
}

.home-lamp::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 0;
  width: 30px;
  height: 22px;
  border-radius: 50% 50% 18% 18%;
  background: rgba(255, 210, 122, 0.62);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(255, 210, 122, 0.34);
}

.home-key {
  right: 11%;
  top: 18%;
  width: 28px;
  height: 10px;
  border: 2px solid rgba(214, 255, 109, 0.58);
  border-left-width: 10px;
  border-radius: 999px;
  transform: rotate(-18deg);
}

.home-hologram {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 150px;
  height: 150px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-35deg);
  animation: homeFloat 6s ease-in-out infinite;
}

.home-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(119, 243, 255, 0.62);
  background: linear-gradient(135deg, rgba(119, 243, 255, 0.22), rgba(255, 45, 118, 0.12));
  box-shadow: inset 0 0 30px rgba(119, 243, 255, 0.12), 0 0 30px rgba(119, 243, 255, 0.18);
  backface-visibility: visible;
}

.home-front {
  transform: translateZ(60px);
}

.home-back {
  transform: rotateY(180deg) translateZ(60px);
}

.home-left {
  transform: rotateY(-90deg) translateZ(60px);
}

.home-right {
  transform: rotateY(90deg) translateZ(60px);
}

.home-roof-left,
.home-roof-right {
  height: 96px;
  top: -62px;
  border-color: rgba(214, 255, 109, 0.58);
  background: linear-gradient(135deg, rgba(214, 255, 109, 0.2), rgba(119, 243, 255, 0.08));
}

.home-roof-left {
  transform: rotateX(58deg) translateY(-8px) translateZ(30px);
  transform-origin: bottom;
}

.home-roof-right {
  transform: rotateX(-58deg) rotateZ(180deg) translateY(8px) translateZ(30px);
  transform-origin: bottom;
}

.housing-node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(119, 243, 255, 0.75);
  animation: nodePulse 3.8s ease-in-out infinite;
}

.node-one {
  top: 24%;
  left: 20%;
}

.node-two {
  top: 62%;
  left: 76%;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(255, 45, 118, 0.72);
  animation-delay: 0.9s;
}

.node-three {
  top: 78%;
  left: 30%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(214, 255, 109, 0.68);
  animation-delay: 1.7s;
}

.housing-label {
  position: absolute;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 11, 0.58);
  color: var(--muted);
  padding: 6px 9px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.label-one {
  top: 16%;
  left: 24%;
}

.label-two {
  right: 8%;
  top: 54%;
}

.label-three {
  left: 10%;
  bottom: 12%;
}

@keyframes homeFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-35deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-21deg) translateY(-12px); }
}

@keyframes homeCardDrift {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes homeOrbit {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(344deg); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.45); opacity: 1; }
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(14px, 1.6vw, 26px);
}

.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.guide-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 38px;
}

.guide-tab.active {
  border-color: var(--accent);
  background: rgba(255, 45, 118, 0.16);
  color: var(--text);
}

.guide-card {
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.guide-card:hover {
  border-color: rgba(119, 243, 255, 0.36);
  transform: translateY(-2px);
}

.guide-image {
  display: block;
  height: clamp(220px, 15vw, 320px);
  background-color: #16181d;
  background-size: cover;
  background-repeat: no-repeat;
}

.guide-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.guide-stops {
  display: grid;
  gap: 8px;
}

.guide-stops span {
  border-left: 1px solid var(--line-bright);
  color: var(--muted);
  line-height: 1.4;
  padding-left: 10px;
}

.top-five-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.guide-item {
  display: grid;
  grid-template-columns: minmax(240px, clamp(240px, 18vw, 360px)) 1fr;
  gap: 16px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
  padding: 12px;
}

.guide-item-image {
  min-height: clamp(160px, 13vw, 260px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: #15171d;
  background-size: cover;
  background-repeat: no-repeat;
}

.guide-item-body {
  display: grid;
  gap: 8px;
  align-content: center;
}

.guide-rank {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.guide-item-body h3 {
  margin: 0;
  font-size: 24px;
}

.guide-item-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.guide-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-address {
  color: var(--soft) !important;
  font-size: 14px;
}

.guide-map {
  margin-top: 4px;
}

.guide-map summary {
  cursor: pointer;
  color: var(--cyan);
  font-size: 13px;
}

.guide-map iframe {
  display: block;
  width: 100%;
  min-height: 170px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  filter: grayscale(0.15) contrast(1.08);
}

.archive-list {
  display: grid;
  gap: 10px;
}

.archive-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.date-box {
  width: 74px;
  border-right: 1px solid var(--line);
  color: var(--cyan);
}

.detail-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.event-detail {
  position: relative;
  padding: var(--page-gutter);
  border-bottom: 1px solid var(--line);
}

.detail-image-band {
  min-height: clamp(280px, 34vw, 620px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #f8f8f4;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-image-band:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 168, 191, 0.28);
  box-shadow: 0 34px 86px rgba(20, 24, 28, 0.14);
}

.detail-card {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 28px));
  margin: -58px auto 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 244, 0.78)),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.detail-card h1 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  margin-bottom: 14px;
}

.detail-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 14px;
}

.compact-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-media {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #15171c center/cover;
  box-shadow: var(--shadow);
}

.detail-panel {
  padding: 24px;
  align-self: stretch;
}

.detail-panel .lead {
  font-size: 17px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-left: 1px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.venue-map {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.venue-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.1) contrast(1.05);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.fact {
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 4px;
}

.fact span {
  display: block;
  color: var(--soft);
  font-size: 12px;
  margin-bottom: 4px;
}

.footer {
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(8, 9, 11, 0.8);
  padding: 22px;
}

.message-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  padding: 22px;
}

.message-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.message-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.message-form .wide,
.message-form .verify-field,
.message-form button {
  grid-column: 1 / -1;
}

.stay-field {
  grid-column: 1 / -1;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft);
  padding-top: 18px;
}

.loading-panel {
  margin: 48px 22px;
  padding: 24px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .section-header,
  .stay-finder,
  .detail-hero,
  .message-panel,
  .weekly-console {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: relative;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .card,
  .card.featured {
    grid-column: span 6;
    grid-template-rows: 250px 1fr;
    min-height: auto;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-item {
    grid-template-columns: 1fr;
  }

  .compact-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-media {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: 100%;
  }

  .topbar,
  .section,
  .footer,
  .detail-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    min-height: auto;
    padding: 42px 14px 18px;
  }

  .hero-panel,
  .controls,
  .fact-grid,
  .message-form,
  .archive-row,
  .day-event {
    grid-template-columns: 1fr;
  }

  body::before {
    display: none;
  }

  .topbar {
    gap: 12px;
    align-items: start;
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .nav-links,
  .filter-row,
  .guide-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .nav-links::-webkit-scrollbar,
  .filter-row::-webkit-scrollbar,
  .guide-tabs::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .chip,
  .guide-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    gap: 24px;
  }

  .hero-actions .button,
  .card-actions .button,
  .detail-actions .button {
    flex: 1 1 140px;
  }

  .calendar-console {
    padding: 10px;
  }

  .calendar-toolbar {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
    margin-bottom: 10px;
  }

  .calendar-toolbar h3 {
    font-size: 24px;
  }

  .icon-control {
    min-width: 36px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .calendar-weekdays,
  .calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
  }

  .calendar-weekdays {
    display: grid;
    font-size: 10px;
    margin-bottom: 6px;
  }

  .calendar-day {
    min-width: 0;
    min-height: 48px;
    aspect-ratio: 1 / 1.08;
    gap: 2px;
    padding: 5px 4px;
    border-radius: 5px;
    justify-items: center;
    text-align: center;
  }

  .day-number {
    font-size: 15px;
    line-height: 1;
  }

  .day-count {
    min-height: 11px;
    font-size: 0;
    line-height: 1;
  }

  .calendar-day.has-events .day-count::before {
    content: attr(data-count);
    color: var(--muted);
    font-size: 9px;
  }

  .day-dots {
    justify-content: center;
    gap: 2px;
    max-width: 28px;
  }

  .dot {
    width: 5px;
    height: 5px;
  }

  .day-panel {
    min-height: auto;
    padding: 14px;
  }

  .day-event-media {
    min-height: 190px;
  }

  .guide-image {
    height: 190px;
  }

  .guide-item-image {
    min-height: 190px;
  }

  .detail-card {
    width: 100%;
    margin-top: -54px;
  }

  .card,
  .card.featured {
    grid-column: 1 / -1;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .archive-row {
    align-items: start;
  }

  .date-box {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Keep the original mark legible on the black navigation surface. */
.topbar .brand img {
  filter: brightness(1.72) contrast(1.04);
}

/* Final cinematic theme authority — keep after legacy light-theme rules. */
html { background: #050607; }
body {
  color: #f3efe7;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 54, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 32%, rgba(50, 107, 116, 0.16), transparent 36rem),
    #050607;
}
.site-shell, .app, .section { background: transparent; }
.app, .section { border-color: rgba(255,255,255,.1); }
.topbar {
  min-height: 78px;
  border-color: rgba(255,255,255,.08);
  background: rgba(5,6,7,.82);
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(1.25);
}
.nav-links a, .language-tools select {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
  color: #f3efe7;
  box-shadow: none;
}
.hero {
  min-height: min(850px,84vh);
  background: #050607;
  box-shadow: none;
}
.hero::before {
  background:
    linear-gradient(90deg,rgba(5,6,7,.96) 0%,rgba(5,6,7,.48) 48%,rgba(5,6,7,.14)),
    linear-gradient(0deg,#050607 0%,transparent 48%),
    url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2400&q=92") center 42%/cover;
  opacity: .92;
}
.hero h1, .hero .lead { color: #f3efe7; text-shadow: 0 8px 40px rgba(0,0,0,.38); }
.hero .lead, .section-header > p, .weekly-event-copy p { color: rgba(243,239,231,.7); }
.metric {
  border-color: rgba(255,255,255,.15);
  background: rgba(5,6,7,.62);
  color: #f3efe7;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.metric strong { color: #9ee8de; }
.site-search-section { background: #050607; border-color: rgba(255,255,255,.1); }
.site-search-panel { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); box-shadow: none; }
.site-search-input {
  color: #f3efe7;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.055);
  box-shadow: none;
}
.button, button {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #f3efe7;
  box-shadow: none;
}
.button.primary, button.primary {
  border-color: #ff5a36;
  background: rgba(255,90,54,.22);
  color: #fff;
}
.guide-tabs { background: transparent; box-shadow: none; }
.guide-tab { color: rgba(243,239,231,.68); border-color: rgba(255,255,255,.12); background: transparent; }
.guide-tab.active { color: #fff; border-color: #ff5a36; background: rgba(255,90,54,.13); }
.guide-card {
  border-color: rgba(255,255,255,.14);
  background: transparent;
  box-shadow: none;
}
.guide-card-body { background: linear-gradient(180deg,rgba(255,255,255,.025),transparent); }
.guide-card-body h3, .guide-card-body p, .guide-stops span { color: #f3efe7; }
.guide-card-body p, .guide-stops span { color: rgba(243,239,231,.67); }
.stay-finder, .stay-panel { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.025); box-shadow: none; }
.stay-visual { background-color: #090b0c; filter: invert(1) hue-rotate(180deg); }

@media (max-width: 680px) {
  .hero { min-height: 760px; padding: 44px 14px 28px; }
  .hero h1 { font-size: clamp(46px,14vw,68px); }
}

/* 2026-07-07 refinement pass */
:root {
  --bg: #f6f6f2;
  --panel: rgba(255, 255, 255, 0.62);
  --panel-strong: rgba(255, 255, 255, 0.86);
  --line: rgba(14, 17, 20, 0.12);
  --line-bright: rgba(14, 17, 20, 0.24);
  --text: #101214;
  --muted: rgba(16, 18, 20, 0.64);
  --soft: rgba(16, 18, 20, 0.42);
  --accent: #f22d72;
  --cyan: #12a8bf;
  --shadow: 0 24px 70px rgba(20, 24, 28, 0.1);
  --page-gutter: clamp(16px, 2.4vw, 48px);
  --section-y: clamp(42px, 5vw, 76px);
}

body {
  background:
    linear-gradient(rgba(16, 18, 20, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, rgba(242, 45, 114, 0.14), transparent 30rem),
    radial-gradient(circle at 18% 48%, rgba(18, 168, 191, 0.1), transparent 26rem),
    var(--bg);
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

body::before {
  background:
    radial-gradient(520px circle at var(--cursor-x) var(--cursor-y), rgba(18, 168, 191, 0.12), transparent 44%),
    radial-gradient(360px circle at calc(var(--cursor-x) + 80px) calc(var(--cursor-y) + 40px), rgba(242, 45, 114, 0.09), transparent 48%);
}

.app,
.footer {
  border-left: 0;
  border-right: 0;
}

.topbar {
  width: 100%;
  grid-template-columns: minmax(154px, 220px) minmax(0, 1fr) minmax(140px, 220px);
  gap: clamp(12px, 2vw, 28px);
  min-height: 78px;
  border-left: 0;
  border-right: 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(20, 24, 28, 0.08);
}

.brand {
  gap: 0;
  min-width: 0;
  align-content: center;
}

.brand img {
  width: clamp(132px, 10vw, 158px);
}

.brand span,
.brand-city {
  padding-left: 4px;
  margin-top: -2px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.nav-links {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a,
.language-tools select,
button,
.button,
.chip,
.guide-tab {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nav-links a {
  white-space: nowrap;
  min-height: 38px;
  padding-inline: 16px;
}

.language-tools {
  justify-content: flex-end;
  min-width: 0;
}

.language-tools select {
  min-width: 132px;
}

.hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 360px);
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: clamp(540px, 78vh, 760px);
  padding: clamp(42px, 6vw, 86px) var(--page-gutter) clamp(34px, 4vw, 58px);
  color: var(--text);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(246, 246, 242, 0.95) 0%, rgba(246, 246, 242, 0.84) 45%, rgba(246, 246, 242, 0.44) 68%, rgba(246, 246, 242, 0.16) 100%),
    linear-gradient(180deg, rgba(246, 246, 242, 0.4), rgba(246, 246, 242, 0.08)),
    url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2400&q=88") center right / cover;
  opacity: 1;
  filter: saturate(0.96) contrast(1.04);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.01;
}

.lead {
  max-width: 660px;
  color: rgba(16, 18, 20, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
}

.hero-actions {
  gap: 10px;
}

.hero-panel {
  position: relative;
  align-self: center;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(360px, 100%);
  max-width: 360px;
  justify-self: end;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 26px -22px -18px 34px;
  border: 1px solid rgba(18, 168, 191, 0.22);
  border-radius: 999px;
  transform: rotate(-14deg);
  pointer-events: none;
}

.metric {
  min-height: 142px;
  border-color: rgba(16, 18, 20, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 54px rgba(20, 24, 28, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.metric::before {
  content: "live";
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(18, 168, 191, 0.78);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric:nth-child(2) {
  transform: translateX(18px);
}

.metric strong {
  color: var(--text);
  font-size: clamp(40px, 5vw, 66px);
}

.metric span {
  color: rgba(16, 18, 20, 0.58);
}

.metric::after {
  background: linear-gradient(90deg, transparent, rgba(18, 168, 191, 0.2), rgba(242, 45, 114, 0.14), transparent);
}

.section-header {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
}

.section-header > p {
  box-sizing: border-box;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  padding: 14px 16px;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
}

.section-header h2,
.stay-panel h3,
.message-panel h2 {
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.05;
}

.weekly-console {
  grid-template-columns: minmax(560px, 1fr) minmax(340px, 470px);
  align-items: start;
}

.calendar-console,
.day-panel,
.guide-card,
.stay-panel,
.message-panel,
.loading-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.calendar-day {
  min-height: clamp(74px, 5.2vw, 108px);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(16, 18, 20, 0.1);
}

.calendar-day:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 45, 114, 0.36);
}

.calendar-day.selected {
  background: rgba(242, 45, 114, 0.12);
}

.day-panel {
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  height: min(700px, calc(100vh - 124px));
  overflow: hidden;
}

.day-panel-head {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent);
}

.day-event-list {
  min-height: 0;
  padding-top: 16px;
}

.day-event {
  height: 100%;
  max-height: 100%;
  grid-template-rows: minmax(180px, 38%) minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 44px rgba(20, 24, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.day-event:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 168, 191, 0.28);
  box-shadow: 0 26px 68px rgba(20, 24, 28, 0.13);
}

.day-event-media {
  min-height: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #f4f4ef;
  transition: transform 260ms ease, filter 260ms ease;
}

.day-event:hover .day-event-media,
.guide-card:hover .guide-image {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.03);
}

.day-event-body {
  min-height: 0;
  overflow: auto;
  padding: 16px 28px 24px;
}

.day-event-body h3 {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.day-event-body h3 a,
.day-event-body .meta,
.day-event-body p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.day-carousel-controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-top: 1px solid rgba(16, 18, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  padding: 0 80px;
}

.day-carousel-controls .icon-control {
  position: absolute;
  top: -315px;
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 999px;
  border-color: rgba(16, 18, 20, 0.18);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.14);
}

.day-carousel-controls .icon-control:first-child {
  left: 14px;
}

.day-carousel-controls .icon-control:last-child {
  right: 14px;
}

.day-carousel-controls span {
  color: rgba(16, 18, 20, 0.54);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.guide-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.guide-card {
  display: grid;
  grid-template-rows: clamp(180px, 14vw, 250px) 1fr;
  min-height: 560px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 168, 191, 0.34);
  box-shadow: 0 30px 74px rgba(20, 24, 28, 0.14);
}

.guide-image {
  height: auto;
}

.guide-card-body {
  grid-template-rows: auto auto minmax(76px, auto) minmax(86px, 1fr) auto;
  align-content: stretch;
}

.guide-stops {
  align-content: start;
}

.guide-card .button.primary {
  justify-self: start;
  align-self: end;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border-color: rgba(16, 18, 20, 0.28);
  background: rgba(255, 255, 255, 0.32);
  color: var(--text);
  box-shadow: none;
}

.guide-card .button.primary:hover {
  border-color: var(--accent);
  background: rgba(242, 45, 114, 0.1);
}

.stay-finder {
  grid-template-columns: minmax(460px, 1.08fr) minmax(300px, 0.92fr);
  align-items: stretch;
}

.stay-visual {
  --draw-progress: 0;
  min-height: clamp(420px, 44vw, 620px);
  background:
    linear-gradient(rgba(16, 18, 20, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 20, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(18, 168, 191, 0.045), transparent 17rem),
    #fbfaf7;
  background-size: 46px 46px, 46px 46px, auto, auto;
  perspective: none;
}

.stay-visual::before,
.stay-visual::after {
  display: none;
}

.sketch-stage {
  position: absolute;
  inset: 7%;
}

.home-sketch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.home-sketch {
  transform: translateY(-4px) scale(1.04);
}

.sketch-line {
  fill: none;
  stroke: rgba(16, 18, 20, 0.86);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--draw-progress));
  filter: drop-shadow(0 10px 24px rgba(18, 168, 191, 0.06));
}

.stay-panel {
  align-content: center;
}

.stay-panel h3 {
  max-width: 560px;
  font-size: clamp(26px, 3vw, 40px);
}

.footer {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.88), rgba(6, 8, 11, 0.7)),
    url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2200&q=72") center / cover;
}

.message-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.message-panel p,
.message-form label,
.form-status,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.message-form {
  padding: 4px;
  background: transparent;
  box-shadow: none;
}

.message-form input,
.message-form textarea,
.message-form select {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: #101214;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.message-form input:focus,
.message-form textarea:focus,
.message-form select:focus {
  border-color: rgba(119, 243, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(119, 243, 255, 0.14);
}

.message-form button {
  min-height: 48px;
  border-color: rgba(119, 243, 255, 0.42);
  background: linear-gradient(135deg, rgba(119, 243, 255, 0.22), rgba(242, 45, 114, 0.2));
  color: #fff;
}

@media (max-width: 1100px) {
  .topbar,
  .hero,
  .section-header,
  .weekly-console,
  .stay-finder,
  .message-panel {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: sticky;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .language-tools {
    justify-content: flex-start;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    justify-self: stretch;
  }

  .hero-panel::before {
    display: none;
  }

  .metric:nth-child(2) {
    transform: none;
  }

  .day-panel {
    position: relative;
    top: auto;
    height: min(680px, 82vh);
  }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    gap: 8px 12px;
    padding: 9px 14px 10px;
  }

  .brand img {
    width: 124px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .language-tools {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .language-tools select {
    min-width: 112px;
    max-width: 112px;
    min-height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 36px 14px 24px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 118px;
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .calendar-day {
    min-height: 48px;
  }

  .day-panel {
    height: 640px;
  }

  .day-event {
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .day-carousel-controls {
    min-height: 54px;
    padding-inline: 64px;
  }

  .day-carousel-controls .icon-control {
    top: -334px;
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .day-carousel-controls .icon-control:first-child {
    left: 8px;
  }

  .day-carousel-controls .icon-control:last-child {
    right: 8px;
  }

  .guide-card {
    min-height: 520px;
  }

  .stay-visual {
    min-height: 360px;
  }

  .message-form {
    grid-template-columns: 1fr;
  }
}

/* CINEMATIC THEME — final cascade authority */
:root {
  --bg:#050607; --panel:rgba(12,14,16,.86); --panel-strong:rgba(17,19,21,.94);
  --line:rgba(255,255,255,.13); --line-bright:rgba(255,255,255,.28);
  --text:#f3efe7; --muted:rgba(243,239,231,.7); --soft:rgba(243,239,231,.46);
  --accent:#ff5a36; --cyan:#9ee8de; --lime:#c9ff78; --amber:#f0c778;
}
html,body { background:#050607; color:#f3efe7; }
body {
  background:radial-gradient(circle at 12% 8%,rgba(255,90,54,.12),transparent 28rem),radial-gradient(circle at 88% 32%,rgba(50,107,116,.16),transparent 36rem),#050607;
}
.site-shell,.app,.section { background:transparent; }
.app,.section { border-color:rgba(255,255,255,.1); }
.topbar { min-height:78px; border-color:rgba(255,255,255,.08); background:rgba(5,6,7,.82); box-shadow:none; backdrop-filter:blur(24px) saturate(1.25); }
.nav-links a,.language-tools select { border-color:rgba(255,255,255,.13); background:rgba(255,255,255,.035); color:#f3efe7; box-shadow:none; }
.hero { min-height:min(850px,84vh); background:#050607; box-shadow:none; }
.hero::before { background:linear-gradient(90deg,rgba(5,6,7,.96) 0%,rgba(5,6,7,.48) 48%,rgba(5,6,7,.14)),linear-gradient(0deg,#050607 0%,transparent 48%),url("https://images.unsplash.com/photo-1502175353174-a7a70e73b362?auto=format&fit=crop&w=2400&q=92") center 42%/cover; opacity:.92; }
.hero h1,.hero .lead { color:#f3efe7; text-shadow:0 8px 40px rgba(0,0,0,.38); }
.hero .lead,.section-header>p,.weekly-event-copy p { color:rgba(243,239,231,.7); }
.metric { border-color:rgba(255,255,255,.15); background:rgba(5,6,7,.62); color:#f3efe7; box-shadow:0 24px 70px rgba(0,0,0,.22); }
.metric strong { color:#9ee8de; }
.site-search-section { background:#050607; border-color:rgba(255,255,255,.1); }
.site-search-panel { background:rgba(255,255,255,.04); border-color:rgba(255,255,255,.12); box-shadow:none; }
.site-search-input { color:#f3efe7; border-color:rgba(255,255,255,.15); background:rgba(255,255,255,.055); box-shadow:none; }
.button,button { border-color:rgba(255,255,255,.25); background:rgba(255,255,255,.06); color:#f3efe7; box-shadow:none; }
.button.primary,button.primary { border-color:#ff5a36; background:rgba(255,90,54,.22); color:#fff; }
.guide-tabs { background:transparent; box-shadow:none; }
.guide-tab { color:rgba(243,239,231,.68); border-color:rgba(255,255,255,.12); background:transparent; }
.guide-tab.active { color:#fff; border-color:#ff5a36; background:rgba(255,90,54,.13); }
.guide-card { border-color:rgba(255,255,255,.14); background:transparent; box-shadow:none; }
.guide-card-body { background:linear-gradient(180deg,rgba(255,255,255,.025),transparent); }
.guide-card-body h3 { color:#f3efe7; }
.guide-card-body p,.guide-stops span { color:rgba(243,239,231,.67); }
.stay-finder,.stay-panel { border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.025); box-shadow:none; }
@media(max-width:680px){.hero{min-height:760px;padding:44px 14px 28px}.hero h1{font-size:clamp(46px,14vw,68px)}}

/* Usability and proportion pass — 2026-07-12 */
.hero { min-height:clamp(560px,68vh,740px); grid-template-columns:minmax(0,1.25fr) minmax(280px,.55fr); }
.hero h1 { max-width:720px; font-size:clamp(42px,4.8vw,64px); line-height:1; }
.hero .lead { max-width:690px; font-size:clamp(16px,1.3vw,19px); }
.hero-panel { max-width:330px; }
.hero-panel { display:grid; grid-template-columns:1fr; gap:12px; width:100%; align-self:center; }
.hero-panel .metric,.hero-panel .metric:nth-child(2) { width:100%; min-height:118px; transform:none; border-color:rgba(255,255,255,.2); background:rgba(7,9,11,.48); backdrop-filter:blur(18px) saturate(1.18); box-shadow:0 18px 45px rgba(0,0,0,.2); animation:metricEnter .65s both; }
.hero-panel .metric:nth-child(2) { animation-delay:.12s; }
.hero-panel .metric strong { font-size:clamp(38px,4vw,58px); }
.hero::after,.hero-panel::before,.metric::before { display:none; }
@keyframes metricEnter { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

.site-search-panel { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:10px; align-items:center; padding:10px; }
.site-search-input { min-height:50px; }
.search-submit { min-width:112px; min-height:50px; border-color:#ff5a36; background:#ff5a36; color:#fff; }
.search-results { grid-column:1 / -1; }

#weekly { padding-top:clamp(62px,7vw,105px); }
#weekly .section-header h2 { max-width:680px; font-size:clamp(38px,4.7vw,68px); line-height:1; }
#weekly .section-header>p,.section-header>p { max-width:560px; padding:0; border:0; background:transparent; box-shadow:none; color:rgba(243,239,231,.7); font-size:16px; line-height:1.65; }
.filter-row .chip { border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.055); color:rgba(243,239,231,.82); }
.filter-row .chip.active { border-color:#ff5a36; background:rgba(255,90,54,.18); color:#fff; }
.week-edition-bar { grid-template-columns:1fr auto; margin:22px 0 26px; padding:14px 0; }
.week-edition-bar strong { font-size:clamp(17px,1.7vw,23px); letter-spacing:.01em; color:#f3efe7; }
.week-edition-bar span { font-size:11px; letter-spacing:.06em; color:rgba(243,239,231,.62); text-align:right; }

.weekly-event-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(22px,2.4vw,36px); margin:0 0 clamp(60px,7vw,95px); }
.weekly-event-card,.weekly-event-card:nth-child(3n) { grid-column:auto; display:flex; flex-direction:column; min-width:0; padding-top:0; border:1px solid rgba(255,255,255,.13); background:rgba(255,255,255,.025); overflow:hidden; }
.weekly-event-image { aspect-ratio:16/10; width:100%; transform:none; background-size:cover; background-position:center; filter:none; }
.weekly-event-card:hover .weekly-event-image { transform:none; filter:saturate(1.08); }
.event-date-block { left:14px; right:auto; bottom:14px; display:flex; align-items:baseline; gap:7px; min-width:88px; padding:8px 11px; color:#fff; background:rgba(5,6,7,.88); border:1px solid rgba(255,255,255,.24); backdrop-filter:blur(10px); text-align:left; }
.event-date-block b { font-family:"DM Sans",sans-serif; font-size:12px; letter-spacing:.12em; }
.event-date-block { font-family:"Quicksand","DM Sans",sans-serif; font-size:29px; line-height:1; }
.weekly-event-copy { display:flex; flex:1; flex-direction:column; padding:19px 18px 20px; }
.event-date-line { margin-bottom:10px; color:#f0c778; font-size:12px; font-weight:600; letter-spacing:.035em; }
.weekly-event-copy h3 { margin:5px 0 11px; font-size:clamp(25px,2.3vw,35px); line-height:1.04; }
.weekly-event-copy .meta { margin-bottom:10px; min-height:25px; }
.weekly-event-copy p { display:-webkit-box; overflow:hidden; margin-bottom:17px; -webkit-box-orient:vertical; -webkit-line-clamp:3; font-size:14px; line-height:1.55; }
.weekly-event-copy .card-actions { margin-top:auto; }
.weekly-event-copy .button { min-width:0; min-height:38px; padding:0 12px; font-size:12px; }

.event-archive { margin-top:0; }
.event-archive summary { padding:24px 0; }
.event-archive summary span { font-size:clamp(28px,3.2vw,44px); }
.event-archive summary b { font-size:13px; }
.archive-list a { grid-template-columns:minmax(160px,.75fr) 1.6fr 1fr 24px; }

#guides .section-header h2 { font-size:clamp(38px,4.8vw,68px); }
.guide-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(20px,2.2vw,34px); }
.guide-card { display:flex; flex-direction:column; min-height:0; overflow:hidden; }
.guide-image { width:100%; aspect-ratio:16/10; flex:none; background-size:cover; }
.guide-card-body { display:flex; flex:1; flex-direction:column; padding:20px; }
.guide-card-body h3 { font-size:clamp(25px,2.2vw,34px); line-height:1.08; }
.guide-card-body p { font-size:14px; line-height:1.55; }
.guide-card-body .button { align-self:flex-start; margin-top:auto; }

.stay-finder { grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr); }
.stay-photo { min-height:clamp(420px,42vw,620px); filter:none; background-image:linear-gradient(0deg,rgba(5,6,7,.2),transparent 45%),url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=88"); background-size:cover; background-position:center; transition:filter .35s ease; }
.stay-photo:hover { filter:brightness(1.06); }
.stay-photo::before,.stay-photo::after { display:none; }

@media(max-width:1050px){.weekly-event-grid,.guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hero{grid-template-columns:1fr}.hero-panel{max-width:none;justify-self:stretch}}
@media(max-width:680px){
  .hero{min-height:650px;padding:42px 14px 30px}.hero h1{font-size:clamp(42px,12vw,58px)}
  .site-search-panel{grid-template-columns:1fr}.search-submit{width:100%}.search-results{grid-column:1}
  .weekly-event-grid,.guide-grid{grid-template-columns:1fr}.weekly-event-card,.weekly-event-card:nth-child(3n){grid-column:auto}
  .week-edition-bar{grid-template-columns:1fr}.week-edition-bar span{text-align:left}
  .archive-list a{grid-template-columns:1fr 24px}.stay-finder{grid-template-columns:1fr}.stay-photo{min-height:340px}
}

/* Final cinematic polish: live media, accessible contrast, and compact archive */
.hero {
  overflow: hidden;
  background: #050607;
}

.hero-video {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.86) contrast(1.07) brightness(.78);
  transform: scale(1.015);
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,6,8,.95) 0%, rgba(4,6,8,.72) 42%, rgba(4,6,8,.24) 76%, rgba(4,6,8,.34) 100%),
    linear-gradient(0deg, #050607 0%, transparent 45%, rgba(5,6,7,.16) 100%);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-panel .metric,
.hero-panel .metric:nth-child(2) {
  min-height: 126px;
  grid-template-columns: auto minmax(0,1fr);
  grid-template-rows: auto 1fr;
  place-content: initial;
  align-items: center;
  gap: 2px 18px;
  padding: 19px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.21);
  background: linear-gradient(135deg, rgba(19,25,28,.72), rgba(7,9,11,.48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 24px 70px rgba(0,0,0,.28);
  text-align: left;
}

.hero-panel .metric .metric-status {
  grid-column: 1 / -1;
  align-self: start;
  color: #f0c778 !important;
  opacity: 1;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-panel .metric strong {
  align-self: end;
  color: #a8eee4;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(46px,4.2vw,62px);
  font-variant-numeric: tabular-nums;
  line-height: .84;
  text-shadow: 0 0 30px rgba(158,232,222,.2);
}

.hero-panel .metric .metric-label {
  align-self: end;
  padding-bottom: 2px;
  color: rgba(250,248,242,.86);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-archive {
  margin: 0;
  padding: clamp(24px,3vw,38px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(158,232,222,.1), transparent 24rem),
    rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.archive-heading small {
  display: block;
  margin-bottom: 8px;
  color: #f0c778;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.archive-heading h3 {
  margin: 0;
  color: #f7f3eb;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(30px,3.2vw,46px);
  font-weight: 400;
  line-height: 1;
}

.archive-heading > span,
.archive-intro,
.archive-result-head span {
  color: rgba(247,243,235,.68);
}

.archive-heading > span {
  flex: none;
  font-size: 12px;
}

.archive-intro {
  max-width: 680px;
  margin: 15px 0 24px;
  font-size: 14px;
  line-height: 1.6;
}

.archive-search {
  display: grid;
  grid-template-columns: minmax(190px,.7fr) minmax(190px,.7fr) auto;
  gap: 12px;
  align-items: end;
}

.archive-search label {
  display: grid;
  gap: 8px;
}

.archive-search label > span {
  color: rgba(247,243,235,.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  outline: none;
  background: rgba(4,6,8,.62);
  color: #fff;
  color-scheme: dark;
  font: inherit;
}

.archive-search input:focus {
  border-color: #9ee8de;
  box-shadow: 0 0 0 3px rgba(158,232,222,.12);
}

.archive-search button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  white-space: nowrap;
}

.archive-message {
  margin: 12px 0 0;
  color: #ffd27a;
}

.archive-result-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 17px 0 11px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #f7f3eb;
}

.archive-list a {
  color: #f7f3eb;
  border-color: rgba(255,255,255,.11);
}

.archive-list a time,
.archive-list a span,
.archive-empty {
  color: rgba(247,243,235,.66);
}

/* Contrast lock: every dark surface keeps readable type. */
.section,
.section h1,
.section h2,
.section h3,
.section a,
.weekly-event-copy h3 a,
.guide-card-body h3 a,
.stay-panel,
.stay-panel h3,
.message-panel,
.message-panel h2,
.footer,
.footer a,
.fact,
.detail-card,
.detail-card h1,
.detail-card h2,
.detail-card h3,
.top-five-list h3 {
  color: #f7f3eb;
}

.weekly-event-copy .meta,
.guide-card-body .meta,
.guide-card-body p,
.guide-stops span,
.stay-panel p,
.stay-points span,
.message-panel p,
.footer-bottom,
.detail-card .lead,
.detail-list,
.fact span,
.guide-item-body p,
.guide-address {
  color: rgba(247,243,235,.72);
}

.pill,
.tag-row .pill {
  color: rgba(250,248,242,.86);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}

.message-form label > span {
  color: rgba(247,243,235,.74);
}

.message-form input,
.message-form textarea,
.message-form select {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  color: #fff;
  color-scheme: dark;
}

@media (max-width: 680px) {
  .hero-video { object-position: 50% center; }
  .hero-panel { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-panel .metric,
  .hero-panel .metric:nth-child(2) { min-height: 114px; padding: 16px; gap: 2px 10px; }
  .hero-panel .metric strong { font-size: 44px; }
  .hero-panel .metric .metric-label { font-size: 10px; }
  .archive-heading { align-items: start; flex-direction: column; gap: 9px; }
  .archive-search { grid-template-columns: 1fr; }
  .archive-search button { width: 100%; }
  .archive-result-head { align-items: start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Branded stay call-to-action */
.stay-panel { gap: clamp(24px, 3vw, 38px); }
.stay-panel h3 {
  max-width: 680px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.04;
  text-wrap: balance;
}
.stay-cta {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5a36 0%, #e43d68 100%);
  box-shadow: 0 14px 34px rgba(228, 61, 104, .24);
  font-size: 14px;
  letter-spacing: .045em;
}
.stay-cta:hover {
  border-color: rgba(255, 255, 255, .45);
  box-shadow: 0 18px 42px rgba(228, 61, 104, .33);
  transform: translateY(-2px);
}
@media (max-width: 680px) {
  .stay-panel h3 { font-size: clamp(38px, 12vw, 54px); }
  .stay-cta { width: 100%; }
}

/* Seattle Edit v4 — dark detail surfaces and a pure editorial close. */
.event-detail {
  min-height: calc(100vh - 78px);
  background:
    radial-gradient(circle at 84% 12%, rgba(60, 132, 136, .16), transparent 30rem),
    linear-gradient(180deg, #07090a 0%, #050607 100%);
  color: #f7f3eb;
}

.detail-image-band {
  min-height: clamp(340px, 45vw, 720px);
  border-color: rgba(255, 255, 255, .14);
  background-color: #111619;
  background-position: center;
  filter: none;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .38);
}

.detail-card {
  border-color: rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 90% 0%, rgba(158, 232, 222, .08), transparent 26rem),
    linear-gradient(145deg, rgba(18, 23, 25, .97), rgba(7, 9, 11, .98));
  color: #f7f3eb;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.detail-card h1,
.detail-card h2,
.detail-card h3,
.detail-card a,
.detail-kicker,
.fact {
  color: #f7f3eb;
}

.detail-card .lead,
.detail-list li,
.guide-item-body p,
.guide-address {
  color: rgba(247, 243, 235, .76) !important;
}

.fact,
.guide-item,
.venue-map {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
}

.fact span,
.detail-kicker {
  color: rgba(247, 243, 235, .64);
}

.guide-item-image {
  background-position: center;
  filter: none;
}

.footer {
  padding: clamp(18px, 3vw, 34px);
  border-color: rgba(255, 255, 255, .1);
  background: #050607;
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(28px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(240, 199, 120, .14), transparent 25rem),
    radial-gradient(circle at 90% 86%, rgba(158, 232, 222, .12), transparent 28rem),
    linear-gradient(145deg, rgba(19, 23, 24, .96), rgba(7, 9, 10, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 32px 100px rgba(0, 0, 0, .24);
}

.closing-intro {
  align-self: center;
}

.closing-intro h2 {
  max-width: 540px;
  margin: 10px 0 18px;
  color: #f7f3eb;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 400;
  line-height: .98;
}

.closing-intro > p:last-child {
  max-width: 520px;
  color: rgba(247, 243, 235, .7);
  line-height: 1.65;
}

.closing-routes {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.closing-routes a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  padding: 22px 46px 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: #f7f3eb;
  transition: padding-left .25s ease, background .25s ease;
}

.closing-routes a:hover {
  padding-left: 15px;
  background: linear-gradient(90deg, rgba(158, 232, 222, .08), transparent);
}

.closing-routes small {
  grid-column: 1 / -1;
  color: #f0c778;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.closing-routes strong {
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.1;
}

.closing-routes span {
  grid-column: 1;
  color: rgba(247, 243, 235, .62);
  font-size: 12px;
}

.closing-routes i {
  position: absolute;
  right: 7px;
  top: 50%;
  color: #9ee8de;
  font-size: 22px;
  font-style: normal;
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .closing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .event-detail { padding: 14px; }
  .detail-image-band { min-height: 300px; border-radius: 18px; }
  .detail-card { margin-top: -34px; padding: 20px 16px; border-radius: 18px; }
  .closing-panel { padding: 26px 20px; border-radius: 20px; }
  .closing-routes a { padding-right: 38px; }
}

.loading-panel {
  border-color: rgba(255, 255, 255, .13);
  background: linear-gradient(135deg, rgba(18, 23, 25, .96), rgba(7, 9, 11, .98));
  color: rgba(247, 243, 235, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* AI search — stable mobile input, readable results, and voice control. */
.ai-search-field {
  position: relative;
  min-width: 0;
}

.site-search-input,
.site-search-input:focus {
  padding-right: 64px;
  border-color: rgba(158, 232, 222, .28) !important;
  background: linear-gradient(135deg, rgba(26, 31, 34, .96), rgba(12, 15, 17, .98)) !important;
  color: #fff !important;
  caret-color: #9ee8de;
  -webkit-text-fill-color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 0 1px rgba(158, 232, 222, .04) !important;
}

.site-search-input::placeholder {
  color: rgba(247, 243, 235, .5);
  -webkit-text-fill-color: rgba(247, 243, 235, .5);
}

.site-search-input:focus {
  border-color: #9ee8de !important;
  box-shadow: 0 0 0 4px rgba(158, 232, 222, .12), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

.voice-search {
  position: absolute;
  top: 50% !important;
  right: 9px !important;
  bottom: auto !important;
  left: auto !important;
  display: grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .07);
  color: #9ee8de;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%) !important;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  z-index: 2;
}

.voice-search svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-search:hover,
.voice-search.listening {
  border-color: #9ee8de;
  background: rgba(158, 232, 222, .14);
}

.voice-search.listening {
  animation: voicePulse 1.1s ease-in-out infinite;
}

@keyframes voicePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158, 232, 222, .28); }
  50% { box-shadow: 0 0 0 8px rgba(158, 232, 222, 0); }
}

.ai-search-hint {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 10px 3px;
  color: rgba(247, 243, 235, .52);
  font-size: 12px;
}

.voice-search-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: -3px 10px 2px;
  color: rgba(158, 232, 222, .86);
  font-size: 12px;
  line-height: 1.45;
}

.voice-search-status:empty {
  display: none;
}

/* The search action reads as part of the Seattle palette rather than an alert. */
.search-submit {
  min-width: 128px;
  border: 1px solid rgba(158, 232, 222, .42) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #176866, #278f87) !important;
  color: #f8fffd !important;
  box-shadow: 0 12px 28px rgba(21, 115, 108, .32), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.search-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 16px 34px rgba(21, 115, 108, .42), inset 0 1px 0 rgba(255, 255, 255, .22) !important;
}

.search-submit:active {
  transform: translateY(0);
  box-shadow: 0 7px 18px rgba(21, 115, 108, .28), inset 0 1px 0 rgba(255, 255, 255, .14) !important;
}

.search-results,
.ai-search-results,
.ai-search-status {
  position: relative;
  inset: auto;
  top: auto;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
  padding: clamp(14px, 2.3vw, 26px);
  border-color: rgba(255, 255, 255, .15);
  background:
    radial-gradient(circle at 92% 0%, rgba(158, 232, 222, .08), transparent 24rem),
    linear-gradient(145deg, rgba(18, 23, 25, .99), rgba(7, 9, 11, .99));
  color: #f7f3eb;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.search-results p,
.search-results a,
.search-results b,
.search-results small {
  color: #f7f3eb;
  -webkit-text-fill-color: currentColor;
}

.search-results p {
  grid-template-columns: 1fr;
}

.ai-search-summary {
  display: block !important;
  padding: 2px 4px 18px !important;
  color: rgba(247, 243, 235, .78) !important;
  font-size: 15px;
  line-height: 1.6;
}

.ai-result-group {
  display: grid;
  gap: 7px;
}

.ai-result-group + .ai-result-group {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.ai-result-group h3 {
  margin: 0 0 4px;
  color: #f0c778;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ai-result-group a {
  grid-template-columns: 72px minmax(190px, .7fr) minmax(220px, 1fr);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .025);
}

.ai-result-group a:hover {
  border-color: rgba(158, 232, 222, .2);
  background: rgba(158, 232, 222, .07);
}

.ai-result-group a b {
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.ai-result-group a small {
  color: rgba(247, 243, 235, .62);
  white-space: normal;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand language"
      "navigation navigation";
    align-items: center;
    gap: 10px 12px;
    padding-top: 9px;
    padding-bottom: 12px;
  }
  .brand { grid-area: brand; width: auto; min-width: 0; }
  .language-tools { grid-area: language; justify-self: end; }
  .nav-links {
    grid-area: navigation;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
    overflow: visible;
  }
  .nav-links a {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: 8px;
    text-align: center;
  }
  .site-search-panel { gap: 9px; padding: 9px; }
  .site-search-input { min-height: 56px; font-size: 16px; }
  .ai-search-hint { padding-inline: 5px; line-height: 1.45; }
  .ai-result-group a { grid-template-columns: 58px 1fr; gap: 5px 10px; padding: 12px 10px; }
.ai-result-group a small { grid-column: 2; }
}

/* Compact editorial rhythm and consistent stay typography. */
:root {
  --section-y: clamp(28px, 3vw, 48px);
}

.site-search-section {
  padding-top: clamp(18px, 2vw, 28px);
  padding-bottom: clamp(8px, 1vw, 14px);
}

#weekly,
#guides,
.stay-section {
  padding-top: clamp(40px, 4vw, 62px);
  padding-bottom: clamp(40px, 4vw, 62px);
}

.section-header {
  margin-bottom: clamp(18px, 2vw, 28px);
}

.weekly-event-grid {
  margin-bottom: clamp(38px, 4.5vw, 64px);
}

.stay-panel h3 {
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

@media (max-width: 680px) {
  #weekly,
  #guides,
  .stay-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-header {
    margin-bottom: 18px;
  }
}

/* Tenant-first weekly edition — 2026-07-16 */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  border-color: rgba(255,255,255,.09);
  background: rgba(5,7,8,.88);
  backdrop-filter: blur(22px) saturate(1.2);
}

.nav-links a {
  min-height: 38px;
  border-color: transparent;
  background: transparent;
}

.nav-links a:hover {
  border-color: rgba(158,232,222,.28);
  background: rgba(158,232,222,.06);
}

.weekly-home,
.secret-list-page {
  padding: clamp(34px,5vw,76px) clamp(16px,4vw,64px) clamp(62px,8vw,118px);
  background:
    radial-gradient(circle at 88% 4%, rgba(158,232,222,.08), transparent 30rem),
    radial-gradient(circle at 7% 22%, rgba(240,199,120,.06), transparent 24rem),
    #050708;
}

.weekly-intro {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr);
  align-items: end;
  gap: clamp(28px,5vw,88px);
  padding: clamp(20px,3vw,46px) 0 clamp(30px,4vw,58px);
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.weekly-intro h1,
.secret-list-hero h1 {
  max-width: 900px;
  margin: 10px 0 18px;
  color: #f8f5ee;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(52px,7.3vw,108px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.weekly-lead,
.secret-list-hero > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(248,245,238,.7);
  font-size: clamp(15px,1.4vw,19px);
  line-height: 1.65;
}

.weekly-status {
  display: grid;
  gap: 7px;
  padding: 20px 0 4px clamp(18px,2vw,30px);
  border-left: 1px solid rgba(255,255,255,.14);
}

.weekly-status > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ee8de;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.weekly-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ee8de;
  box-shadow: 0 0 0 6px rgba(158,232,222,.08), 0 0 18px rgba(158,232,222,.55);
  animation: livePulse 2.4s ease-in-out infinite;
}

.weekly-status strong {
  color: #f8f5ee;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(24px,2.3vw,34px);
  font-weight: 400;
  line-height: 1.1;
}

.weekly-status small { color: rgba(248,245,238,.5); }

.timeframe-tabs {
  display: inline-flex;
  gap: 8px;
  margin: 26px 0 6px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}

.timeframe-tabs button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(248,245,238,.6);
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.timeframe-tabs button:hover { color: #fff; background: rgba(255,255,255,.06); }
.timeframe-tabs button.active { background: #f8f5ee; color: #090b0c; }

.week-edition-bar {
  margin-top: 24px;
  border-color: rgba(255,255,255,.1);
}

.weekly-event-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(18px,2.1vw,32px);
  margin-top: 0;
}

.weekly-event-card,
.weekly-event-card:nth-child(3n),
.guide-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 18px 55px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .38s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}

.weekly-event-card::after,
.guide-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 4;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,232,222,.48), transparent);
  opacity: .35;
  pointer-events: none;
  transition: opacity .3s ease;
}

.weekly-event-card:hover,
.guide-card:hover {
  transform: translateY(-7px);
  border-color: rgba(158,232,222,.32);
  box-shadow: 0 28px 72px rgba(0,0,0,.36), 0 0 0 1px rgba(158,232,222,.05);
}

.weekly-event-card:hover::after,
.guide-card:hover::after { opacity: 1; }

.weekly-event-image,
.guide-image {
  overflow: hidden;
  transition: filter .35s ease, background-size .7s cubic-bezier(.2,.8,.2,1);
}

.weekly-event-card:hover .weekly-event-image,
.guide-card:hover .guide-image {
  filter: saturate(1.08) brightness(1.04);
  background-size: 108%;
}

.weekly-event-image::before,
.guide-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, transparent 42%, rgba(5,7,8,.5));
  pointer-events: none;
}

.editorial-rank {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 14px;
  color: rgba(255,255,255,.9);
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}

.weekly-event-copy,
.guide-card-body { padding: 24px; }

.event-date-line {
  font-size: 13px;
  letter-spacing: .045em;
}

.weekly-event-copy h3,
.guide-card-body h3 {
  font-size: clamp(28px,2.45vw,40px);
  line-height: 1.03;
}

.weekly-event-copy p,
.guide-card-body p {
  font-size: 16px;
  line-height: 1.6;
}

.weekly-event-copy .meta,
.guide-card-body .meta,
.guide-stops span { font-size: 13px; }

.weekly-event-copy .card-actions,
.guide-card-body .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.weekly-event-copy .card-actions .button,
.guide-card-body .card-actions .button {
  width: 100%;
  min-height: 48px;
  min-width: 0;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.share-button { cursor: pointer; }

.engagement-bar {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.engagement-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(248,245,238,.64);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  box-shadow: none;
}

.detail-card > .engagement-bar {
  margin-bottom: clamp(20px, 2.2vw, 28px);
}

.detail-card > .detail-actions {
  gap: 12px;
}

.engagement-stat i {
  color: rgba(158,232,222,.72);
  font-size: 14px;
  font-style: normal;
}

.engagement-stat b { color: rgba(248,245,238,.94); font-size: 13px; }
.engagement-stat small { font-size: 11px; }
.like-button { cursor: pointer; }
.like-button:hover { border-color: rgba(255,107,115,.25); background: rgba(255,107,115,.08); }
.like-button.is-liked i { color: #ff6b73; filter: drop-shadow(0 0 8px rgba(255,107,115,.45)); }
.like-button.is-liked b { color: #fff; }

.view-leaderboard {
  display: grid;
  grid-template-columns: minmax(230px,.58fr) minmax(0,1.42fr);
  gap: clamp(28px,5vw,84px);
  margin: clamp(52px,7vw,96px) 0;
  padding: clamp(28px,4vw,54px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(240,199,120,.1), transparent 22rem), rgba(255,255,255,.025);
}

.leaderboard-head h3 {
  margin: 10px 0 0;
  color: #f8f5ee;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(34px,4vw,57px);
  font-weight: 400;
  line-height: 1;
}

.view-leaderboard ol { margin: 0; padding: 0; list-style: none; }
.view-leaderboard li {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.view-leaderboard li > span { color: #f0c778; font-family: "Quicksand","DM Sans",sans-serif; font-size: 19px; }
.view-leaderboard li a { display: grid; gap: 3px; }
.view-leaderboard li strong { font-size: 14px; }
.view-leaderboard li small { color: rgba(248,245,238,.48); }
.view-leaderboard li > b { color: #9ee8de; font-size: 11px; font-weight: 500; white-space: nowrap; }
.leaderboard-empty { align-self: center; color: rgba(248,245,238,.56); line-height: 1.6; }

.upcoming-frame {
  position: relative;
  min-height: 430px;
  margin-top: 26px;
  padding: clamp(34px,6vw,80px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 25%, rgba(158,232,222,.12), transparent 22rem), rgba(255,255,255,.022);
}
.upcoming-frame h2 { max-width: 720px; margin: 12px 0 18px; color:#f8f5ee; font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(42px,6vw,82px); font-weight:400; line-height:.95; }
.upcoming-frame > p:not(.eyebrow) { max-width: 570px; color: rgba(248,245,238,.66); line-height:1.65; }
.upcoming-count { display:inline-flex; margin-top:26px; padding:9px 13px; border:1px solid rgba(158,232,222,.25); border-radius:999px; color:#9ee8de; font-size:11px; }
.upcoming-orbit { position:absolute; right:-80px; bottom:-120px; width:360px; height:360px; border:1px solid rgba(158,232,222,.2); border-radius:50%; box-shadow:0 0 0 42px rgba(158,232,222,.025),0 0 0 84px rgba(158,232,222,.018); }

.future-edition {
  position: relative;
  margin-top: 26px;
  padding: clamp(26px,4vw,52px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 2%, rgba(158,232,222,.11), transparent 30rem),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  box-shadow: 0 26px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035);
}

.future-edition::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.025) 50%, transparent 58% 100%);
  transform: translateX(-100%);
  transition: transform 1.1s cubic-bezier(.2,.75,.2,1);
}

.future-edition:hover::before { transform: translateX(100%); }

.future-edition-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(26px,5vw,78px);
  align-items: end;
  margin-bottom: clamp(28px,4vw,48px);
  padding-bottom: clamp(24px,3.5vw,42px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.future-edition-head h2 {
  margin: 11px 0 14px;
  color: #f8f5ee;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(44px,5.8vw,79px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .96;
}

.future-edition-head > div:first-child > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(248,245,238,.65);
  font-size: clamp(14px,1.15vw,17px);
  line-height: 1.65;
}

.future-verification {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
  min-width: 190px;
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.future-verification span {
  grid-row: 1 / span 2;
  color: #f0c778;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: 54px;
  line-height: .9;
}

.future-verification small { align-self:end; color:rgba(248,245,238,.78); font-size:11px; letter-spacing:.06em; text-transform:uppercase; }
.future-verification b { grid-column:1 / -1; margin-top:13px; color:#9ee8de; font-size:10px; font-weight:500; letter-spacing:.04em; }

.future-date-browser {
  display: grid;
  grid-template-columns: 1.45fr repeat(7,minmax(72px,1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.future-date-browser button {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 13px 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
  color: rgba(248,245,238,.7);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.future-date-browser button:not(:disabled):hover {
  transform: translateY(-3px);
  border-color: rgba(158,232,222,.3);
  background: rgba(158,232,222,.055);
  color: #fff;
}

.future-date-browser button.active {
  border-color: rgba(158,232,222,.42);
  background: linear-gradient(150deg,rgba(158,232,222,.16),rgba(158,232,222,.045));
  color: #f8f5ee;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 30px rgba(0,0,0,.17);
}

.future-date-browser button:disabled { cursor:default; opacity:.32; }
.future-date-browser button small { color:#9ee8de; font-size:9px; font-weight:600; letter-spacing:.09em; text-transform:uppercase; }
.future-date-browser button strong { font-family:"Quicksand","DM Sans",sans-serif; font-size:27px; font-weight:400; line-height:1; }
.future-date-browser button span { align-self:end; color:rgba(248,245,238,.42); font-size:9px; letter-spacing:.08em; text-transform:uppercase; }
.future-date-browser button span::after { content:" events"; }
.future-date-browser .future-date-all strong { font-family:"DM Sans",sans-serif; font-size:15px; font-weight:500; }

.future-filter-result {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding: 5px 8px 13px;
  color:rgba(248,245,238,.5);
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.future-filter-result strong { color:#f0c778; font-size:10px; font-weight:500; }

.future-event-list { position:relative; }

.future-event-row {
  display: grid;
  grid-template-columns: 36px 90px minmax(0,1fr) 88px 24px;
  gap: clamp(10px,2vw,24px);
  align-items: center;
  min-height: 78px;
  padding: 13px 8px;
  border-bottom: 1px solid rgba(255,255,255,.085);
  color: #f8f5ee;
  opacity: 0;
  animation: futureRowIn .55s both;
  animation-delay: var(--row-delay);
  transition: padding .28s ease, background .28s ease, border-color .28s ease;
}

.future-event-row:first-child { border-top:1px solid rgba(255,255,255,.085); }
.future-event-row:hover { padding-inline:16px; border-color:rgba(158,232,222,.22); background:linear-gradient(90deg,rgba(158,232,222,.07),rgba(158,232,222,.015)); }
.future-rank { color:rgba(240,199,120,.78); font-family:"Quicksand","DM Sans",sans-serif; font-size:20px; }
.future-event-row time { color:rgba(248,245,238,.5); font-size:11px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; }
.future-event-name { display:grid; gap:5px; min-width:0; }
.future-event-name strong { overflow:hidden; font-family:"DM Sans",sans-serif; font-size:clamp(15px,1.25vw,18px); font-weight:500; line-height:1.25; text-overflow:ellipsis; white-space:nowrap; }
.future-event-name small { overflow:hidden; color:rgba(248,245,238,.48); font-size:11px; text-overflow:ellipsis; white-space:nowrap; }
.future-category { justify-self:start; padding:6px 9px; border:1px solid rgba(255,255,255,.1); border-radius:999px; color:rgba(248,245,238,.58); font-size:9px; letter-spacing:.06em; text-transform:uppercase; }
.future-event-row > i { color:#9ee8de; font-size:17px; font-style:normal; transition:transform .28s ease; }
.future-event-row:hover > i { transform:translate(4px,-4px); }

.future-months { display:grid; gap:12px; }
.future-month-group,
.future-week-group { border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(3,5,6,.24); overflow:hidden; }
.future-month-group > summary,
.future-week-group > summary {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto 20px;
  gap:18px;
  align-items:center;
  padding:21px 23px;
  cursor:pointer;
  list-style:none;
  transition:background .25s ease,color .25s ease;
}
.future-month-group > summary::-webkit-details-marker,
.future-week-group > summary::-webkit-details-marker { display:none; }
.future-month-group > summary:hover,
.future-week-group > summary:hover { background:rgba(255,255,255,.035); }
.future-month-group > summary span,
.future-week-group > summary span { display:grid; gap:4px; }
.future-month-group > summary small,
.future-week-group > summary small { color:#9ee8de; font-size:9px; font-weight:600; letter-spacing:.11em; text-transform:uppercase; }
.future-month-group > summary strong { color:#f8f5ee; font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(28px,3vw,41px); font-weight:400; }
.future-week-group > summary strong { color:rgba(248,245,238,.9); font-size:14px; font-weight:500; }
.future-month-group > summary > b,
.future-week-group > summary > b { color:rgba(248,245,238,.5); font-size:10px; font-weight:500; text-transform:uppercase; }
.future-month-group > summary > i,
.future-week-group > summary > i { position:relative; width:18px; height:18px; }
.future-month-group > summary > i::before,
.future-month-group > summary > i::after,
.future-week-group > summary > i::before,
.future-week-group > summary > i::after { content:""; position:absolute; left:50%; top:50%; width:13px; height:1px; background:#9ee8de; transform:translate(-50%,-50%); transition:transform .3s ease; }
.future-month-group > summary > i::after,
.future-week-group > summary > i::after { transform:translate(-50%,-50%) rotate(90deg); }
.future-month-group[open] > summary > i::after,
.future-week-group[open] > summary > i::after { transform:translate(-50%,-50%) rotate(0); }
.future-month-group[open] > summary { border-bottom:1px solid rgba(255,255,255,.1); }
.future-week-groups { display:grid; gap:10px; padding:13px; }
.future-week-group { border-radius:13px; background:rgba(255,255,255,.015); }
.future-week-group > summary { padding:16px 18px; }
.future-week-group[open] > summary { border-bottom:1px solid rgba(255,255,255,.08); }
.future-week-group .future-event-list { padding:0 14px 14px; }
.future-month-empty { margin:0; padding:24px 20px; color:rgba(248,245,238,.5); font-size:13px; line-height:1.6; }

@keyframes futureRowIn {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}

.event-archive {
  padding-top: clamp(38px,5vw,72px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.secret-list-hero {
  max-width: 1050px;
  padding: clamp(22px,4vw,54px) 0 clamp(34px,5vw,70px);
}
.secret-list-hero h1 { font-size: clamp(52px,7vw,102px); }
.secret-list-page .guide-tabs { margin-bottom: 26px; }
.secret-list-page .guide-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.guide-card-body .engagement-bar { margin-top: 14px; }

.share-dialog {
  width: min(560px,calc(100vw - 28px));
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #101416;
  color: #f8f5ee;
  box-shadow: 0 40px 120px rgba(0,0,0,.62);
}
.share-dialog::backdrop { background: rgba(0,0,0,.7); backdrop-filter: blur(7px); }
.share-dialog-head { display:flex; justify-content:space-between; gap:20px; align-items:start; padding:30px 30px 24px; border-bottom:1px solid rgba(255,255,255,.1); }
.share-dialog-head small { color:#9ee8de; font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; }
.share-dialog-head h2 { margin:9px 0 0; font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(30px,4.4vw,43px); font-weight:400; line-height:1.03; }
.share-close { width:42px; height:42px; padding:0; border:1px solid rgba(255,255,255,.16); border-radius:50%; background:rgba(255,255,255,.025); color:#fff; font-size:27px; box-shadow:none; }
.share-options { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; padding:26px 28px 18px; }
.share-options a,.share-options button { display:grid; justify-items:center; gap:11px; min-width:0; padding:19px 7px; border:1px solid rgba(255,255,255,.11); border-radius:14px; background:linear-gradient(155deg,rgba(255,255,255,.05),rgba(255,255,255,.018)); color:#f8f5ee; box-shadow:inset 0 1px 0 rgba(255,255,255,.035); transition:transform .25s ease,border-color .25s ease,background .25s ease; }
.share-options a:hover,.share-options button:hover { border-color:rgba(158,232,222,.34); background:rgba(158,232,222,.07); }
.share-options a:hover,.share-options button:hover { transform:translateY(-3px); }
.share-options b { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.085); font-size:18px; }
.share-options span { overflow:hidden; width:100%; font-size:11px; font-weight:600; text-overflow:ellipsis; white-space:nowrap; }
.share-feedback { min-height:34px; margin:0; padding:0 26px 20px; color:#9ee8de; font-size:12px; }

.tenant-footer {
  padding: clamp(18px,2.5vw,34px);
  background:
    radial-gradient(circle at 82% 15%, rgba(158,232,222,.1), transparent 26rem),
    radial-gradient(circle at 7% 85%, rgba(255,90,54,.08), transparent 24rem),
    #050708;
}

.housing-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.42fr) minmax(300px,.58fr);
  gap: clamp(38px,6vw,110px);
  align-items: end;
  padding: clamp(34px,5vw,74px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    radial-gradient(circle at 88% 12%, rgba(158,232,222,.13), transparent 24rem);
  box-shadow: 0 24px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
}

.housing-cta::before {
  content: "";
  position: absolute;
  right: -105px;
  top: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(158,232,222,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(158,232,222,.022), 0 0 0 96px rgba(158,232,222,.015);
  pointer-events: none;
}

.housing-cta-copy { position: relative; z-index: 1; }
.housing-cta-copy h2 {
  max-width: 850px;
  margin: 14px 0 22px;
  color: #f8f5ee;
  font-family: "Quicksand", "DM Sans", sans-serif;
  font-size: clamp(48px,6.2vw,91px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .91;
}
.housing-cta-copy > p:not(.eyebrow) {
  max-width: 770px;
  margin: 0;
  color: rgba(248,245,238,.7);
  font-size: clamp(15px,1.25vw,18px);
  line-height: 1.7;
}
.housing-keywords { display:flex; flex-wrap:wrap; gap:8px; margin-top:24px; }
.housing-keywords span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(248,245,238,.64);
  font-size: 11px;
}
.housing-cta-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 8px 18px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(158,232,222,.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(158,232,222,.12), rgba(158,232,222,.035));
  color: #f8f5ee;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, background .3s ease;
}
.housing-cta-link:hover {
  transform: translateY(-6px);
  border-color: rgba(158,232,222,.55);
  background: linear-gradient(145deg, rgba(158,232,222,.18), rgba(158,232,222,.055));
}
.housing-cta-link span { grid-column:1; align-self:start; color:#9ee8de; font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.housing-cta-link strong { grid-column:1; align-self:end; font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(28px,2.5vw,38px); font-weight:400; line-height:1.02; }
.housing-cta-link i { grid-column:2; grid-row:1 / span 2; align-self:center; font-family:"DM Sans",sans-serif; font-size:38px; font-style:normal; font-weight:300; transition:transform .3s ease; }
.housing-cta-link:hover i { transform:translate(5px,-5px); }

.tenant-footer-main { display:flex; justify-content:space-between; gap:28px; align-items:end; padding-bottom:26px; border-bottom:1px solid rgba(255,255,255,.1); }
.tenant-footer-main { margin-top: clamp(28px,4vw,52px); }
.tenant-footer-main strong { display:block; margin-top:8px; color:#f8f5ee; font-family:"Quicksand","DM Sans",sans-serif; font-size:clamp(27px,3vw,42px); font-weight:400; }
.tenant-footer-main nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.tenant-footer-main nav a { padding:9px 12px; border:1px solid rgba(255,255,255,.12); border-radius:999px; color:rgba(248,245,238,.72); font-size:11px; }
.tenant-footer-main nav a:hover { border-color:rgba(158,232,222,.35); color:#fff; }

@keyframes livePulse { 50% { opacity:.48; transform:scale(.82); } }

@media (max-width: 1050px) {
  .weekly-event-grid,
  .secret-list-page .guide-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .weekly-intro { grid-template-columns: 1fr; }
  .weekly-status { padding-left:0; border-left:0; }
  .housing-cta { grid-template-columns:1fr; }
  .housing-cta-link { min-height:142px; }
  .future-edition-head { grid-template-columns:1fr; }
  .future-verification { padding-left:0; border-left:0; }
}

@media (max-width: 760px) {
  .weekly-home,
  .secret-list-page { padding-inline: 14px; padding-top: 18px; }
  .weekly-intro h1,
  .secret-list-hero h1 { font-size: clamp(47px,14vw,69px); }
  .timeframe-tabs { display:grid; grid-template-columns:repeat(3,1fr); width:100%; border-radius:16px; }
  .timeframe-tabs button { padding-inline:8px; border-radius:11px; }
  .weekly-event-grid,
  .secret-list-page .guide-grid { grid-template-columns: 1fr; }
  .weekly-event-card:hover,
  .guide-card:hover { transform:none; }
  .view-leaderboard { grid-template-columns:1fr; padding:24px 18px; }
  .view-leaderboard li { grid-template-columns:30px minmax(0,1fr); }
  .view-leaderboard li > b { grid-column:2; }
  .upcoming-frame { min-height:380px; padding:34px 22px; }
  .future-edition { padding:28px 16px; border-radius:20px; }
  .future-edition-head h2 { font-size:clamp(43px,13vw,61px); }
  .future-event-row { grid-template-columns:28px 64px minmax(0,1fr) 18px; gap:9px; min-height:72px; padding-inline:3px; }
  .future-event-row:hover { padding-inline:7px; }
  .future-date-browser { display:flex; gap:7px; margin-inline:-2px; padding:2px 2px 10px; overflow-x:auto; scroll-snap-type:x proximity; scrollbar-width:none; }
  .future-date-browser::-webkit-scrollbar { display:none; }
  .future-date-browser button { flex:0 0 76px; min-height:82px; scroll-snap-align:start; }
  .future-date-browser .future-date-all { flex-basis:112px; }
  .future-category { display:none; }
  .future-event-name strong { font-size:14px; }
  .future-event-name small { font-size:10px; }
  .future-month-group > summary,
  .future-week-group > summary { grid-template-columns:minmax(0,1fr) auto 17px; gap:9px; padding:17px 14px; }
  .future-month-group > summary strong { font-size:30px; }
  .future-week-group .future-event-list { padding-inline:8px; }
  .share-options { grid-template-columns:repeat(3,1fr); }
  .share-dialog-head { padding:24px 22px 19px; }
  .share-options { padding:20px 20px 14px; }
  .weekly-event-copy,
  .guide-card-body { padding:22px 20px; }
  .weekly-event-copy h3,
  .guide-card-body h3 { font-size:clamp(30px,8vw,38px); }
  .weekly-event-copy p,
  .guide-card-body p { font-size:15px; }
  .engagement-bar { justify-content:flex-start; overflow-x:auto; }
  .housing-cta { gap:30px; padding:34px 22px; border-radius:20px; }
  .housing-cta-copy h2 { font-size:clamp(45px,13vw,64px); }
  .housing-cta-link { min-height:134px; padding:20px; }
  .housing-keywords span { font-size:10px; }
  .tenant-footer-main { align-items:start; flex-direction:column; }
  .tenant-footer-main nav { justify-content:flex-start; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .nav-links { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .nav-links a { font-size:10px; }
}

@media (prefers-reduced-motion: reduce) {
  .weekly-status i { animation:none; }
  .weekly-event-card,
  .guide-card,
  .weekly-event-image,
  .guide-image { transition:none; }
  .future-edition::before { display:none; }
  .future-event-row { opacity:1; animation:none; transition:none; }
}

/* Puget Sound after rain — premium Seattle living atmosphere, 2026-07-19 */
:root {
  --sound-black: #050a0b;
  --sound-deep: #071012;
  --sound-green: #0b1917;
  --sound-blue: #102126;
  --mist: #a8d9d2;
  --mist-soft: #d6e5df;
  --window-glow: #d9b873;
  --cedar: #d17452;
  --paper: #f4f0e7;
  --cursor-x: 50vw;
  --cursor-y: 22vh;
  --pointer-pan-x: 0px;
  --pointer-pan-y: 0px;
  --bg: var(--sound-black);
  --panel: rgba(10, 22, 22, .76);
  --panel-strong: rgba(11, 24, 24, .94);
  --line: rgba(196, 225, 219, .13);
  --line-bright: rgba(196, 225, 219, .27);
  --text: var(--paper);
  --muted: rgba(230, 235, 229, .68);
  --soft: rgba(230, 235, 229, .46);
  --accent: var(--cedar);
  --cyan: var(--mist);
  --amber: var(--window-glow);
}

html {
  background: var(--sound-black);
  scrollbar-color: rgba(168, 217, 210, .33) var(--sound-black);
}

body {
  background:
    radial-gradient(ellipse at 84% 5%, rgba(110, 173, 173, .12), transparent 36rem),
    radial-gradient(ellipse at 8% 38%, rgba(53, 91, 79, .16), transparent 38rem),
    linear-gradient(145deg, #050a0b 0%, #091315 45%, #06100f 100%);
  color: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .28;
  background:
    radial-gradient(310px circle at var(--cursor-x) var(--cursor-y), rgba(168, 217, 210, .115), transparent 61%),
    radial-gradient(170px circle at calc(var(--cursor-x) + 58px) calc(var(--cursor-y) + 42px), rgba(217, 184, 115, .06), transparent 70%),
    linear-gradient(180deg, transparent 57%, rgba(167, 213, 205, .018) 57.2%, transparent 57.5%);
  mix-blend-mode: screen;
  transition: opacity .55s ease;
}

body.is-pointer-active::before { opacity: .54; }

::selection {
  background: rgba(168, 217, 210, .28);
  color: #fff;
}

.site-shell { background: transparent; }

.topbar {
  min-height: 76px;
  border-bottom: 1px solid rgba(196, 225, 219, .1);
  background: rgba(5, 12, 13, .68);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .018);
  backdrop-filter: blur(26px) saturate(1.28);
  transition: min-height .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.topbar.is-scrolled {
  min-height: 68px;
  border-color: rgba(168, 217, 210, .17);
  background: rgba(4, 11, 12, .9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.brand-city,
.brand span {
  color: var(--window-glow);
  letter-spacing: .2em;
}

.nav-links a,
.language-tools select {
  border-color: rgba(196, 225, 219, .11);
  background: rgba(223, 239, 235, .025);
  color: rgba(244, 240, 231, .74);
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease;
}

.nav-links a:hover {
  color: #fff;
  border-color: rgba(168, 217, 210, .28);
  background: rgba(168, 217, 210, .065);
  transform: translateY(-1px);
}

.weekly-home,
.secret-list-page {
  background:
    radial-gradient(ellipse at calc(88% + var(--pointer-pan-x)) calc(3% + var(--pointer-pan-y)), rgba(121, 176, 177, .13), transparent 32rem),
    radial-gradient(ellipse at calc(5% - var(--pointer-pan-x)) 27%, rgba(217, 184, 115, .065), transparent 28rem),
    repeating-linear-gradient(0deg, transparent 0 84px, rgba(181, 219, 211, .012) 85px, transparent 86px),
    linear-gradient(180deg, rgba(7, 16, 18, .94), rgba(5, 11, 12, .96));
  transition: background-position .8s ease-out;
}

.weekly-intro {
  position: relative;
  padding-top: clamp(34px, 4vw, 62px);
  border-bottom-color: transparent;
}

.weekly-intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 217, 210, .42), rgba(217, 184, 115, .15) 45%, transparent 88%);
}

.weekly-intro h1,
.secret-list-hero h1 {
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 18px 70px rgba(0, 0, 0, .3);
}

.weekly-lead,
.secret-list-hero > p:last-child {
  color: rgba(232, 236, 230, .72);
  font-size: clamp(16px, 1.35vw, 20px);
}

.eyebrow {
  color: var(--window-glow);
  letter-spacing: .18em;
}

.weekly-status {
  position: relative;
  gap: 9px;
  padding: 22px 24px;
  border: 1px solid rgba(168, 217, 210, .14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(168, 217, 210, .07), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 22px 60px rgba(0, 0, 0, .16);
  overflow: hidden;
}

.weekly-status::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(168, 217, 210, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(168, 217, 210, .012), 0 0 0 52px rgba(168, 217, 210, .009);
  pointer-events: none;
}

.weekly-status > span,
.weekly-status i { color: var(--mist); }
.weekly-status strong { color: var(--paper); }

.timeframe-tabs {
  gap: 5px;
  padding: 6px;
  border-color: rgba(168, 217, 210, .15);
  background: rgba(8, 18, 19, .64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 14px 42px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.timeframe-tabs button {
  min-height: 44px;
  padding-inline: 21px;
  color: rgba(232, 236, 230, .62);
  transition: color .3s ease, background .3s ease, transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}

.timeframe-tabs button:hover {
  color: #fff;
  background: rgba(168, 217, 210, .06);
  transform: translateY(-1px);
}

.timeframe-tabs button.active {
  color: #071011;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18), inset 0 -1px 0 rgba(0, 0, 0, .08);
}

.week-edition-bar {
  border-color: rgba(168, 217, 210, .13);
}

.live-dot {
  background: var(--cedar);
  box-shadow: 0 0 0 5px rgba(209, 116, 82, .11);
}

.weekly-event-grid,
.secret-list-page .guide-grid { gap: clamp(20px, 2.2vw, 34px); }

.weekly-event-card,
.guide-card {
  --surface-x: 50%;
  --surface-y: 35%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --surface-lift: 0px;
  border-color: rgba(186, 221, 214, .14);
  border-radius: 22px;
  background:
    linear-gradient(152deg, rgba(168, 217, 210, .055), rgba(255, 255, 255, .015) 48%, rgba(217, 184, 115, .022)),
    rgba(7, 16, 17, .72);
  box-shadow: 0 24px 68px rgba(0, 0, 0, .23), inset 0 1px 0 rgba(255, 255, 255, .055);
  transform: perspective(1200px) translate3d(0, var(--surface-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  will-change: transform;
  animation: soundCardIn .72s cubic-bezier(.22,.7,.22,1) both;
  animation-delay: var(--delay, 0s);
  transition: transform .42s cubic-bezier(.18,.82,.22,1), border-color .35s ease, box-shadow .42s ease, background .42s ease;
}

.weekly-event-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: radial-gradient(430px circle at var(--surface-x) var(--surface-y), rgba(168, 217, 210, .13), transparent 50%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity .4s ease;
}

.weekly-event-card::after,
.guide-card::after {
  background: linear-gradient(90deg, transparent 5%, rgba(168, 217, 210, .48) 48%, rgba(217, 184, 115, .22) 72%, transparent 95%);
}

.weekly-event-card:hover,
.guide-card:hover {
  --surface-lift: -8px;
  border-color: rgba(168, 217, 210, .32);
  box-shadow: 0 36px 88px rgba(0, 0, 0, .35), 0 0 0 1px rgba(168, 217, 210, .045), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.weekly-event-card.is-pointer-lit::before,
.guide-card.is-pointer-lit::before { opacity: 1; }

.weekly-event-image,
.guide-image {
  filter: saturate(.9) contrast(1.035) brightness(.94);
  transform: translateZ(0);
  transition: filter .65s ease, transform .8s cubic-bezier(.18,.82,.22,1);
}

.weekly-event-card:hover .weekly-event-image,
.guide-card:hover .guide-image {
  filter: saturate(1.06) contrast(1.025) brightness(1.015);
  background-size: cover;
  transform: scale(1.025) translateZ(8px);
}

.weekly-event-image::before,
.guide-image::before {
  background:
    linear-gradient(180deg, rgba(5, 12, 13, .02), transparent 46%, rgba(5, 12, 13, .58)),
    linear-gradient(125deg, rgba(99, 154, 149, .1), transparent 44%);
}

.weekly-event-copy,
.guide-card-body {
  position: relative;
  background: linear-gradient(180deg, rgba(11, 24, 24, .2), rgba(5, 12, 13, .48));
}

.weekly-event-copy h3,
.guide-card-body h3 {
  color: var(--paper);
  text-wrap: balance;
  letter-spacing: -.025em;
}

.weekly-event-copy p,
.guide-card-body p { color: rgba(226, 232, 225, .67); }

.event-date-line,
.future-rank { color: var(--window-glow); }

.weekly-event-copy .card-actions .button,
.guide-card-body .card-actions .button {
  border-color: rgba(186, 221, 214, .16);
  border-radius: 12px;
  background: rgba(230, 240, 236, .035);
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.weekly-event-copy .card-actions .button:hover,
.guide-card-body .card-actions .button:hover {
  border-color: rgba(168, 217, 210, .36);
  background: rgba(168, 217, 210, .08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.weekly-event-copy .card-actions .button.primary,
.guide-card-body .card-actions .button.primary {
  border-color: rgba(209, 116, 82, .72);
  background: linear-gradient(135deg, rgba(209, 116, 82, .34), rgba(209, 116, 82, .16));
}

.engagement-bar { border-color: rgba(186, 221, 214, .1); }

.engagement-stat {
  border-color: rgba(186, 221, 214, .09);
  background: rgba(223, 239, 235, .026);
}

.engagement-stat i { color: rgba(168, 217, 210, .82); }

.view-leaderboard,
.future-edition,
.housing-cta-link {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border-color: rgba(186, 221, 214, .14);
  transform: perspective(1500px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform .48s cubic-bezier(.18,.82,.22,1), border-color .35s ease, box-shadow .42s ease, background .42s ease;
}

.view-leaderboard {
  background:
    radial-gradient(circle at 0 0, rgba(217, 184, 115, .105), transparent 24rem),
    linear-gradient(145deg, rgba(168, 217, 210, .035), rgba(255, 255, 255, .012));
  box-shadow: 0 24px 72px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.future-edition {
  background:
    radial-gradient(circle at 94% 0, rgba(126, 184, 183, .13), transparent 32rem),
    radial-gradient(circle at 4% 95%, rgba(217, 184, 115, .045), transparent 25rem),
    linear-gradient(145deg, rgba(168, 217, 210, .035), rgba(255, 255, 255, .01));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .045);
}

.future-edition.is-pointer-lit,
.view-leaderboard.is-pointer-lit { border-color: rgba(168, 217, 210, .24); }

.future-date-browser button {
  border-color: rgba(186, 221, 214, .11);
  background: rgba(221, 239, 234, .02);
}

.future-date-browser button:not(:disabled):hover {
  border-color: rgba(168, 217, 210, .32);
  background: rgba(168, 217, 210, .065);
}

.future-date-browser button.active {
  border-color: rgba(168, 217, 210, .42);
  background: linear-gradient(150deg, rgba(168, 217, 210, .17), rgba(168, 217, 210, .045));
}

.future-month-group,
.future-week-group {
  border-color: rgba(186, 221, 214, .11);
  background: rgba(4, 11, 12, .35);
}

.future-month-group > summary:hover,
.future-week-group > summary:hover { background: rgba(168, 217, 210, .04); }

.future-event-row:hover {
  border-color: rgba(168, 217, 210, .23);
  background: linear-gradient(90deg, rgba(168, 217, 210, .075), rgba(168, 217, 210, .01));
}

.share-dialog {
  border-color: rgba(186, 221, 214, .18);
  background:
    radial-gradient(circle at 90% 0, rgba(126, 184, 183, .1), transparent 22rem),
    #0b1516;
  box-shadow: 0 48px 150px rgba(0, 0, 0, .68), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.share-options a,
.share-options button {
  border-color: rgba(186, 221, 214, .12);
  background: linear-gradient(155deg, rgba(168, 217, 210, .055), rgba(255, 255, 255, .015));
}

.share-options a:hover,
.share-options button:hover {
  border-color: rgba(168, 217, 210, .36);
  background: rgba(168, 217, 210, .08);
}

.tenant-footer {
  background:
    radial-gradient(circle at 86% 8%, rgba(126, 184, 183, .1), transparent 28rem),
    radial-gradient(circle at 6% 92%, rgba(217, 184, 115, .055), transparent 24rem),
    #050b0c;
}

.housing-cta {
  border-color: rgba(186, 221, 214, .15);
  background:
    linear-gradient(120deg, rgba(168, 217, 210, .045), rgba(255, 255, 255, .008)),
    radial-gradient(circle at 88% 10%, rgba(126, 184, 183, .14), transparent 26rem);
  box-shadow: 0 32px 94px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.housing-cta-link {
  border-color: rgba(168, 217, 210, .29);
  background: linear-gradient(145deg, rgba(168, 217, 210, .13), rgba(168, 217, 210, .025));
}

.housing-cta-link:hover {
  border-color: rgba(168, 217, 210, .52);
  background: linear-gradient(145deg, rgba(168, 217, 210, .19), rgba(168, 217, 210, .055));
  transform: perspective(1500px) translateY(-6px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.housing-keywords span,
.tenant-footer-main nav a {
  border-color: rgba(186, 221, 214, .12);
  background: rgba(223, 239, 235, .022);
}

@keyframes soundCardIn {
  from { opacity: 0; filter: blur(5px); }
  to { opacity: 1; filter: blur(0); }
}

@media (max-width: 760px) {
  .topbar,
  .topbar.is-scrolled { min-height: auto; }

  .weekly-home,
  .secret-list-page {
    background:
      radial-gradient(ellipse at 95% 1%, rgba(121, 176, 177, .11), transparent 22rem),
      linear-gradient(180deg, #071012, #050b0c);
  }

  .weekly-status { padding: 19px 18px; }

  .weekly-event-card,
  .guide-card,
  .weekly-event-card:hover,
  .guide-card:hover,
  .future-edition,
  .view-leaderboard,
  .housing-cta-link,
  .housing-cta-link:hover {
    --surface-lift: 0px;
    transform: none;
    will-change: auto;
  }

  .weekly-event-card:hover .weekly-event-image,
  .guide-card:hover .guide-image { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }

  .weekly-home,
  .secret-list-page { transition: none; }

  .weekly-event-card,
  .guide-card,
  .future-edition,
  .view-leaderboard,
  .housing-cta-link {
    animation: none;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Keep the weekly edition headline crisp and editorial on larger screens. */
@media (min-width: 761px) {
  .weekly-intro h1 {
    max-width: none;
    font-size: clamp(38px, 3.4vw, 58px);
    line-height: .98;
    letter-spacing: -.035em;
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .weekly-intro {
    grid-template-columns: 1fr;
  }

  .weekly-status {
    max-width: 420px;
  }
}

/* Stable engagement controls and share fallback — 2026-07-19 */
.weekly-event-card,
.guide-card,
.weekly-event-card:hover,
.guide-card:hover {
  --surface-lift: 0px;
  transform: none;
  will-change: auto;
}

.weekly-event-card:hover .weekly-event-image,
.guide-card:hover .guide-image {
  transform: scale(1.015);
}

.engagement-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  margin-top: 18px;
  padding: 15px 0 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(186, 221, 214, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.engagement-stat {
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 40px;
  padding: 0 7px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: rgba(232, 236, 230, .6);
  cursor: default;
  transform: none;
  transition: color .22s ease, background .22s ease;
}

.engagement-stat b {
  min-width: 2.4ch;
  color: rgba(244, 240, 231, .92);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.engagement-stat small { white-space: nowrap; }

.metric-readonly:hover {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.engagement-stat:disabled { opacity: 1; transform: none; }

.like-button {
  min-width: 98px;
  padding-inline: 14px;
  border: 1px solid rgba(209, 116, 82, .24);
  background: rgba(209, 116, 82, .055);
  color: rgba(244, 240, 231, .76);
  cursor: pointer;
}

.like-button:hover {
  border-color: rgba(209, 116, 82, .48);
  background: rgba(209, 116, 82, .11);
  transform: none;
}

.like-button.is-liked {
  border-color: rgba(255, 107, 115, .42);
  background: rgba(255, 107, 115, .11);
}

.metric-readonly {
  min-height: 34px;
  padding-inline: 5px;
  color: rgba(232, 236, 230, .52);
  user-select: none;
}

.metric-views { margin-left: auto; }

.metric-shares {
  margin-left: 2px;
  padding-left: 12px;
  border-left: 1px solid rgba(186, 221, 214, .085);
  border-radius: 0;
}

.share-dialog-fallback-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.share-dialog-fallback-backdrop[hidden] { display: none; }

.share-dialog {
  z-index: 200;
  max-height: min(720px, calc(100dvh - 28px));
  overflow: auto;
  opacity: 0;
  transition: opacity .2s ease;
}

.share-dialog[open] { opacity: 1; }

.share-dialog.is-fallback-open {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100vw - 28px));
  margin: 0;
  transform: translate(-50%, -50%);
}

body.share-dialog-open { overflow: hidden; }

@starting-style {
  .share-dialog[open] { opacity: 0; }
}

@media (max-width: 390px) {
  .engagement-bar { gap: 4px; }
  .engagement-stat { gap: 4px; padding-inline: 4px; }
  .like-button { min-width: 86px; padding-inline: 10px; }
  .metric-shares { padding-left: 8px; }
  .engagement-stat small { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .share-dialog { transition: none; }
}
