/* ————————————————————————————————————————————————————————————————
   The Reception — venue comparison
   Tokens first; every colour below comes from here.
   ———————————————————————————————————————————————————————————————— */
:root {
  --ivory: #f8f4ec;
  --paper: #fffdf9;
  --sheet: #fbf8f2;
  --ink: #1c211e;
  --ink-2: #444b46;
  --muted: #7a807b;
  --line: rgba(28, 33, 30, .11);
  --line-2: rgba(28, 33, 30, .2);
  --gold: #a9834b;
  --gold-2: #d6bd8e;
  --gold-3: #f1e4c8;
  --sage: #66775f;
  --sage-2: #dfe6d9;
  --blush: #ecdcd4;
  --dusk: #101512;
  --dusk-2: #1a211d;
  --on-dusk: #f3ede2;
  --good: #3f7552;
  --good-bg: #e3eee4;
  --warn: #a8762c;
  --warn-bg: #f6ead3;
  --bad: #9c4c3a;
  --bad-bg: #f4e1dc;
  --shadow-1: 0 1px 2px rgba(20, 24, 21, .06), 0 8px 24px -12px rgba(20, 24, 21, .18);
  --shadow-2: 0 2px 6px rgba(20, 24, 21, .06), 0 30px 60px -28px rgba(20, 24, 21, .35);
  --r: 22px;
  --r-s: 14px;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --wrap: 1240px;
  --gut: clamp(16px, 4vw, 40px);
  color-scheme: light;
}


@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: var(--ease-out); }
::view-transition-group(*) { animation-duration: .55s; animation-timing-function: var(--ease-out); }

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--ivory); color: var(--ink);
  font: 400 16px/1.6 var(--sans); letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold-2); color: var(--dusk); }

.wrap { width: min(var(--wrap), 100% - var(--gut) * 2); margin-inline: auto; }
.serif { font-family: var(--serif); }
.eyebrow {
  font: 600 12px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; margin: 0; line-height: 1.05; }
h2.big { font-size: clamp(40px, 6.2vw, 84px); letter-spacing: -.035em; }
h2.big em, h1 em { font-style: italic; color: var(--gold); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 640px; }
.sec { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.sec-head { display: grid; gap: 22px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head.split { grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; }
@media (max-width: 860px) { .sec-head.split { grid-template-columns: 1fr; } }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* ———————— top bar ———————— */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 68px;
  display: flex; align-items: center; transition: background .4s, box-shadow .4s, color .4s, transform .5s var(--ease-out);
  color: var(--on-dusk);
}
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bar.solid { background: color-mix(in srgb, var(--ivory) 86%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.bar.hide { transform: translateY(-100%); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--serif); font-size: 21px; letter-spacing: -.01em; }
.brand svg { width: 30px; height: 30px; }
.brand small { font: 600 10px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; opacity: .6; display: block; margin-top: 3px; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 500; padding: 9px 14px; border-radius: 99px; opacity: .8; transition: opacity .2s, background .2s; }
.nav a:hover { opacity: 1; background: color-mix(in srgb, currentColor 9%, transparent); }
.nav .pill { opacity: 1; white-space: nowrap; border: 1px solid color-mix(in srgb, currentColor 30%, transparent); display: inline-flex; gap: 8px; align-items: center; }
.nav .pill b { background: var(--gold); color: #fff; font-size: 11px; min-width: 20px; height: 20px; border-radius: 10px; display: inline-grid; place-items: center; padding: 0 6px; }
@media (max-width: 900px) { .nav a:not(.pill):not(.keep) { display: none; } }
.progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 60; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--gold-2), var(--gold)); }

/* ———————— intro curtain ———————— */
.intro { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background: var(--ivory); color: var(--ink); pointer-events: none; }
.intro .ring { width: 120px; height: 120px; }
.intro .ring circle { fill: none; stroke: var(--gold); stroke-width: 1; stroke-dasharray: 380; stroke-dashoffset: 380; animation: draw 1.4s var(--ease) .1s forwards; }
.intro .ring text { font: italic 400 30px var(--serif); fill: var(--ink); opacity: 0; animation: fade .8s ease .7s forwards; }
.intro p { font: 600 11px var(--sans); letter-spacing: .4em; text-transform: uppercase; color: var(--gold); opacity: 0; margin: 22px 0 0; text-align: center; animation: fade .8s ease 1s forwards; }
.intro.go { animation: lift 1s var(--ease-out) forwards; }
.intro.gone { display: none; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes lift { to { clip-path: inset(0 0 100% 0); } }
.intro { clip-path: inset(0 0 0 0); }

/* ———————— hero ———————— */
.hero { position: relative; min-height: 100svh; background: var(--dusk); color: var(--on-dusk); overflow: hidden; display: grid; align-items: end; isolation: isolate; }
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slides figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.8s ease; }
.hero-slides figure.on { opacity: 1; }
.hero-slides img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); }
.hero-slides figure.on img { animation: kb 9s linear forwards; }
@keyframes kb { from { transform: scale(1.14) translate3d(0, 0, 0); } to { transform: scale(1.02) translate3d(-1.5%, -1%, 0); } }
.hero-slides figcaption { position: absolute; right: var(--gut); bottom: 30px; font: 500 12px var(--sans); letter-spacing: .08em; opacity: 0; transition: opacity .8s .6s; color: rgba(243,237,226,.8); }
.hero-slides figure.on figcaption { opacity: 1; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 20% 100%, rgba(10,13,11,.94) 12%, rgba(10,13,11,.5) 55%, rgba(10,13,11,.25)),
              linear-gradient(180deg, rgba(10,13,11,.6), transparent 30%); }
.hero canvas { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-in { padding: 120px 0 clamp(44px, 7vh, 90px); }
.hero .eyebrow { color: var(--gold-2); }
.hero h1 { font-size: clamp(46px, min(8vw, 12.5vh), 128px); letter-spacing: -.045em; line-height: .92; margin: 22px 0 24px; max-width: 12ch; }
.hero h1 em { color: var(--gold-2); }
.hero .lede { color: rgba(243,237,226,.8); }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(105%) rotate(4deg); opacity: 0; filter: blur(6px); transition: transform 1.1s var(--ease-out), opacity .9s, filter 1s; transition-delay: calc(var(--i) * 70ms + var(--d, 0ms)); transform-origin: 0 100%; }
.split.in .w > span { transform: none; opacity: 1; filter: none; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; border-radius: 99px; text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid transparent; transition: transform .3s var(--ease-out), background .3s, box-shadow .3s, color .3s; will-change: transform; }
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn.gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1409; box-shadow: 0 10px 30px -10px rgba(169,131,75,.7), inset 0 1px 0 rgba(255,255,255,.35); }
.btn.ghost { border-color: rgba(243,237,226,.35); color: var(--on-dusk); background: rgba(243,237,226,.06); }
.btn.ghost:hover { background: rgba(243,237,226,.14); }
.btn.line { border-color: var(--line-2); color: var(--ink); background: var(--paper); }
.btn.line:hover { box-shadow: var(--shadow-1); }
.btn.sm { padding: 10px 16px; font-size: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: clamp(24px, 5vw, 72px); margin-top: clamp(26px, 4vh, 56px); padding-top: 26px; border-top: 1px solid rgba(243,237,226,.18); }
.hero-stats div b { display: block; font: 300 clamp(34px, 4.4vw, 58px)/1 var(--serif); letter-spacing: -.03em; color: #fff; }
.hero-stats div > span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,237,226,.62); }
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, auto); } }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; translate: -50% 0; width: 22px; height: 36px; border: 1px solid rgba(243,237,226,.4); border-radius: 12px; }
.scroll-cue::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--gold-2); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ———————— marquee ———————— */
.marquee { background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); overflow: hidden; padding: 24px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; will-change: transform; }
.marquee-track span { font: italic 300 clamp(28px, 3.6vw, 46px)/1 var(--serif); white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; opacity: .92; }
.marquee-track span::after { content: "✦"; font-size: .45em; color: var(--gold); font-style: normal; }

/* ———————— the plan ———————— */
.plan { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.plan > div { background: var(--paper); padding: 28px 26px 30px; display: grid; gap: 10px; align-content: start; }
.plan .k { font: 600 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.plan .v { font: 400 clamp(26px, 2.6vw, 34px)/1.05 var(--serif); letter-spacing: -.02em; }
.plan .n { font-size: 14px; color: var(--ink-2); }
@media (max-width: 900px) { .plan { grid-template-columns: 1fr 1fr; } }
.day { margin-top: 28px; position: relative; padding: 34px 0 6px; }
.day svg { width: 100%; height: 90px; overflow: visible; }
.day .track { fill: none; stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 2 6; }
.day .run { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 2.4s var(--ease); }
.day.in .run { stroke-dashoffset: 0; }
.day .stops { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: -8px; }
.day .stop { text-align: center; opacity: 0; transform: translateY(10px); transition: .8s var(--ease-out); transition-delay: calc(var(--i) * 380ms + 200ms); }
.day.in .stop { opacity: 1; transform: none; }
.day .stop b { display: block; font: 400 22px/1.1 var(--serif); }
.day .stop span { font-size: 13px; color: var(--muted); }
@media (max-width: 700px) { .day .stops { grid-template-columns: 1fr 1fr; gap: 18px; } .day svg { display: none; } }

/* ———————— toolbar ———————— */
.tools { position: sticky; top: 68px; z-index: 20; margin: 0 calc(var(--gut) * -1) 30px; padding: 12px var(--gut); background: color-mix(in srgb, var(--ivory) 88%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.tools.stuck { border-color: var(--line); }
.tools-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.chip { border: 1px solid var(--line-2); background: var(--paper); padding: 9px 15px; border-radius: 99px; font-size: 14px; font-weight: 500; display: inline-flex; gap: 8px; align-items: center; transition: background .25s, color .25s, border-color .25s, transform .2s; white-space: nowrap; }
.chip:hover { border-color: var(--ink-2); }
.chip:active { transform: scale(.97); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.seg { display: inline-flex; background: var(--paper); border: 1px solid var(--line-2); border-radius: 99px; padding: 3px; position: relative; }
.seg button { border: 0; background: none; padding: 7px 14px; border-radius: 99px; font-size: 13.5px; font-weight: 500; position: relative; z-index: 1; transition: color .25s; white-space: nowrap; }
.seg button[aria-pressed="true"] { color: var(--ivory); }
.seg .thumb { position: absolute; top: 3px; bottom: 3px; border-radius: 99px; background: var(--ink); transition: left .45s var(--ease-out), width .45s var(--ease-out); }
.tools .grow { flex: 1; }
.guests { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); }
.guests output { font: 500 20px var(--serif); color: var(--ink); min-width: 3ch; }
input[type="range"] { -webkit-appearance: none; appearance: none; background: transparent; width: 150px; height: 26px; }
input[type="range"]::-webkit-slider-runnable-track { height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold) var(--p, 50%), var(--line-2) var(--p, 50%)); }
input[type="range"]::-moz-range-track { height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold) var(--p, 50%), var(--line-2) var(--p, 50%)); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line-2); box-shadow: var(--shadow-1); margin-top: -8.5px; transition: transform .2s; }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line-2); box-shadow: var(--shadow-1); }
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.15); }
.tune { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 28px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height .6s var(--ease-out), opacity .4s, margin .4s; }
.tune.open { max-height: 260px; opacity: 1; margin-top: 16px; }
.tune label { display: grid; gap: 4px; font-size: 13px; color: var(--ink-2); }
.tune label b { font: 500 17px var(--serif); color: var(--ink); display: flex; justify-content: space-between; }
.tune input { width: 100%; }
@media (max-width: 800px) { .tune { grid-template-columns: 1fr 1fr; } .tools .hide-s { display: none; } }
.tools .count { font-size: 13px; color: var(--muted); }

/* ———————— venue cards ———————— */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); }
@media (max-width: 1060px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }
.card { position: relative; background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow-1); transition: box-shadow .5s var(--ease-out), transform .6s var(--ease-out), opacity .4s; transform-style: preserve-3d; will-change: transform; }
.card:hover { box-shadow: var(--shadow-2); }
.card.out { opacity: .18; filter: grayscale(.8); pointer-events: none; }
.card > a { text-decoration: none; display: block; border-radius: inherit; }
.card .ph { position: relative; aspect-ratio: 4 / 4.4; border-radius: var(--r) var(--r) 0 0; overflow: hidden; background: var(--sheet); }
.card .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .5s, transform 1.2s var(--ease-out); }
.card .ph img + img { opacity: 0; }
.card .ph img.on { opacity: 1; }
.card:hover .ph img { transform: scale(1.045); }
.card .ph::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(0deg, rgba(10,13,11,.55), transparent); pointer-events: none; }
.card .ticks { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; display: flex; gap: 4px; opacity: 0; transition: opacity .3s; }
.card:hover .ticks { opacity: 1; }
.card .ticks i { flex: 1; height: 2px; border-radius: 2px; background: rgba(255,255,255,.35); transition: background .2s; }
.card .ticks i.on { background: #fff; }
.card .rank { position: absolute; left: 14px; top: 14px; z-index: 2; display: flex; align-items: baseline; gap: 6px; padding: 7px 13px 6px; border-radius: 99px; background: rgba(16,21,18,.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; }
.card .rank small { font: 600 10px var(--sans); letter-spacing: .16em; text-transform: uppercase; opacity: .75; }
.card .rank b { font: italic 400 22px/1 var(--serif); }
.card .fav-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; font: 600 10.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #1a1409; background: var(--gold-2); padding: 6px 10px; border-radius: 99px; transition: opacity .3s; }
.card:hover .fav-tag { opacity: 0; }
.iconbtn { position: absolute; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 0; display: grid; place-items: center; background: rgba(255,255,255,.88); color: var(--dusk); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .3s var(--ease-out), background .3s, color .3s; box-shadow: 0 4px 14px -6px rgba(0,0,0,.4); }
.iconbtn:hover { transform: scale(1.08); }
.iconbtn svg { width: 20px; height: 20px; }
.heart { right: 14px; top: 14px; }
.heart[aria-pressed="true"] { color: #c2413a; }
.heart[aria-pressed="true"] svg path { fill: currentColor; }
.heart.pop { animation: pop .5s var(--ease-out); }
@keyframes pop { 30% { transform: scale(1.35); } 60% { transform: scale(.9); } }
.card .body { padding: 20px 22px 22px; display: grid; gap: 12px; }
.card h3 { font-size: clamp(25px, 2.2vw, 30px); letter-spacing: -.025em; }
.card .where { font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.card .where i { width: 3px; height: 3px; background: currentColor; border-radius: 50%; opacity: .6; }
.card .verdict { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 14px; gap: 8px; }
.metrics div { display: grid; gap: 1px; }
.metrics b { font: 500 21px/1.15 var(--serif); letter-spacing: -.01em; }
.metrics span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cap { height: 5px; border-radius: 3px; background: var(--line); position: relative; margin-top: 2px; overflow: visible; }
.cap i { position: absolute; inset: 0 auto 0 0; border-radius: inherit; background: var(--sage); width: 0; transition: width 1.2s var(--ease-out) .2s; }
.in .cap i, .cap.in i { width: var(--w); }
.cap::after { content: ""; position: absolute; top: -4px; bottom: -4px; left: var(--t); width: 1.5px; background: var(--gold); }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 99px; background: var(--sheet); border: 1px solid var(--line); color: var(--ink-2); text-transform: capitalize; }
.card .cmp { position: absolute; right: 16px; bottom: 16px; z-index: 3; display: inline-flex; gap: 7px; align-items: center; font-size: 12.5px; font-weight: 600; border: 1px solid var(--line-2); background: var(--paper); padding: 6px 11px; border-radius: 99px; transition: .25s; }
.card .cmp[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.card .cmp svg { width: 14px; height: 14px; }
.budget-flag { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 99px; margin-left: auto; letter-spacing: .02em; }
.bf-in { background: var(--good-bg); color: var(--good); }
.bf-under { background: var(--sage-2); color: var(--sage); }
.bf-over { background: var(--warn-bg); color: var(--warn); }
.stars { --s: 0; position: relative; display: inline-block; font-size: 13px; letter-spacing: 2px; line-height: 1; color: var(--line-2); }
.stars::before { content: "★★★★★"; }
.stars::after { content: "★★★★★"; position: absolute; inset: 0; width: var(--s); overflow: hidden; color: var(--gold); }

/* ———————— reveal ———————— */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--d, 0ms); }
.rv.in { opacity: 1; transform: none; }
.rv-img { clip-path: inset(12% 8% 12% 8% round var(--r)); transition: clip-path 1.4s var(--ease-out); }
.rv-img.in { clip-path: inset(0 0 0 0 round var(--r)); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; transition-delay: 0s !important; }
  .rv, .split .w > span { opacity: 1; transform: none; filter: none; }
}

/* ———————— map (light, to match the page) ———————— */
.map-sec { background: var(--sheet); }
.map-grid { display: grid; grid-template-columns: 340px 1fr; gap: 20px; height: min(74vh, 720px); }
@media (max-width: 900px) { .map-grid { grid-template-columns: 1fr; height: auto; } }
.map-list { overflow: auto; display: grid; gap: 8px; align-content: start; padding: 2px 6px 2px 2px; scrollbar-width: thin; }
@media (max-width: 900px) { .map-list { order: 2; display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; } }
.ml { display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; text-align: left; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); transition: background .25s, border-color .25s, box-shadow .25s; }
@media (max-width: 900px) { .ml { min-width: 250px; scroll-snap-align: start; } }
.ml:hover, .ml.on { border-color: var(--gold-2); box-shadow: var(--shadow-1); }
.ml.on { background: var(--gold-3); }
.ml .ml-no { font: italic 400 20px var(--serif); color: var(--gold); }
.ml b { font: 400 18px/1.2 var(--serif); display: block; }
.ml span { font-size: 12.5px; color: var(--muted); }
.ml em { font-style: normal; font: 500 15px var(--serif); color: var(--gold); white-space: nowrap; }
.map { border-radius: var(--r); overflow: hidden; position: relative; background: #eee9df; min-height: 420px; box-shadow: var(--shadow-1); border: 1px solid var(--line); }
.map .leaflet-container { background: #eee9df; font-family: var(--sans); height: 100%; }
.map .leaflet-tile-pane { filter: grayscale(.55) sepia(.18) brightness(1.04) contrast(.95); }
.map .leaflet-control-attribution { background: rgba(255,253,249,.8) !important; color: var(--muted); font-size: 10px; }
.map .leaflet-control-attribution a { color: var(--ink-2); }
.map .leaflet-bar a { background: var(--paper); color: var(--ink); border-color: var(--line); }
.pin { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 1.5px solid var(--gold); color: var(--gold); font: italic 500 16px var(--serif); box-shadow: 0 6px 16px -6px rgba(60,45,20,.45); transition: transform .3s var(--ease-out), background .3s, color .3s; }
.pin.on { background: var(--gold); color: #fff; transform: scale(1.22); }
.pin.church { background: var(--ink); color: #fff; border-color: var(--ink); font-style: normal; }
.pin.church svg { width: 18px; height: 18px; }
.church-pulse { position: absolute; inset: -10px; border-radius: 50%; border: 1px solid var(--gold); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { from { transform: scale(.6); opacity: .8; } to { transform: scale(1.8); opacity: 0; } }
.route-line { stroke-dasharray: 3000; stroke-dashoffset: 3000; animation: route 1.6s var(--ease) forwards; filter: drop-shadow(0 1px 3px rgba(169,131,75,.45)); }
@keyframes route { to { stroke-dashoffset: 0; } }
.ring-label { font: 600 10px var(--sans); letter-spacing: .14em; color: rgba(90,70,40,.6); white-space: nowrap; }
.map-card { position: absolute; z-index: 500; left: 16px; bottom: 16px; width: min(330px, calc(100% - 32px)); background: var(--paper); color: var(--ink); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-2); transform: translateY(20px); opacity: 0; transition: .5s var(--ease-out); pointer-events: none; }
.map-card.on { transform: none; opacity: 1; pointer-events: auto; }
.map-card img { width: 100%; height: 150px; object-fit: cover; }
.map-card div { padding: 14px 16px 16px; display: grid; gap: 6px; }
.map-card h4 { font-size: 22px; }
.map-card p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.map-card a { font-size: 13.5px; font-weight: 600; color: var(--gold); text-decoration: none; }

/* ———————— charts ———————— */
.charts { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; }
@media (max-width: 960px) { .charts { grid-template-columns: 1fr; } }
.panel { background: var(--paper); border-radius: var(--r); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-1); position: relative; overflow: hidden; }
.panel h3 { font-size: 26px; letter-spacing: -.02em; }
.panel .sub { font-size: 14px; color: var(--muted); margin: 6px 0 22px; }
.bars { display: grid; gap: 12px; position: relative; }
.bars .band { position: absolute; top: -6px; bottom: -6px; background: repeating-linear-gradient(135deg, var(--good-bg) 0 8px, color-mix(in srgb, var(--good-bg) 55%, transparent) 8px 16px); border-left: 1px dashed var(--good); border-right: 1px dashed var(--good); border-radius: 4px; }
.bars .band span { position: absolute; top: -24px; left: 50%; translate: -50% 0; font: 600 10.5px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--good); white-space: nowrap; }
.bar-row { display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: center; position: relative; font-size: 14px; }
.bar-row a { text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar-row a:hover { color: var(--gold); }
.bar-track { position: relative; height: 26px; }
.bar-fill { position: absolute; inset: 3px auto 3px 0; border-radius: 0 6px 6px 0; background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); width: 0; transition: width 1.3s var(--ease-out); transition-delay: calc(var(--i) * 60ms); }
.bar-fill.food { background: linear-gradient(90deg, var(--blush), #d9b8a8); }
.bar-val { position: absolute; top: 50%; translate: 0 -50%; left: calc(var(--w) + 10px); font: 500 15px var(--serif); white-space: nowrap; opacity: 0; transition: opacity .6s .9s, left 1.3s var(--ease-out); }
.bars.in .bar-fill { width: var(--w); }
.bars.in .bar-val { opacity: 1; }
.bars-axis { display: grid; grid-template-columns: 150px 1fr; gap: 14px; margin-top: 10px; font-size: 11px; color: var(--muted); }
.bars-axis div { display: flex; justify-content: space-between; }
@media (max-width: 560px) { .bar-row, .bars-axis { grid-template-columns: 100px 1fr; } }
.legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-2); margin-top: 18px; }
.legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: -2px; margin-right: 6px; }
.scatter { width: 100%; height: auto; overflow: visible; }
.scatter .grid line { stroke: var(--line); }
.scatter .axis text { font: 11px var(--sans); fill: var(--muted); }
.scatter .dot circle { fill: var(--gold-2); stroke: var(--paper); stroke-width: 2; transition: r .3s var(--ease-out); }
.scatter .dot text { font: italic 500 12px var(--serif); fill: var(--dusk); text-anchor: middle; dominant-baseline: central; pointer-events: none; }
.scatter .dot { cursor: pointer; opacity: 0; transform: scale(.2); transform-box: fill-box; transform-origin: center; transition: opacity .6s, transform .9s var(--ease-out); transition-delay: calc(var(--i) * 80ms); }
.scatter.in .dot { opacity: 1; transform: none; }
.scatter .dot:hover circle { r: 17; }
.scatter .target { fill: var(--good-bg); }
.tip { position: fixed; z-index: 90; pointer-events: none; background: var(--dusk); color: var(--on-dusk); padding: 10px 12px; border-radius: 10px; font-size: 13px; box-shadow: var(--shadow-2); opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; max-width: 240px; }
.tip.on { opacity: 1; transform: none; }
.tip b { font: 400 17px var(--serif); display: block; }

/* ———————— matrix ———————— */
.matrix-wrap { overflow-x: auto; border-radius: var(--r); background: var(--paper); box-shadow: var(--shadow-1); scrollbar-width: thin; }
.matrix { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 980px; font-size: 14px; }
.matrix th, .matrix td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.matrix thead th { position: sticky; top: 0; background: var(--paper); z-index: 2; font-weight: 500; vertical-align: bottom; }
.matrix thead th a { text-decoration: none; display: grid; gap: 8px; justify-items: center; font: 400 16px/1.15 var(--serif); }
.matrix thead th img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--paper), 0 0 0 4px var(--line-2); transition: transform .4s var(--ease-out); }
.matrix thead th a:hover img { transform: scale(1.08) rotate(-3deg); }
.matrix tbody th { text-align: left; position: sticky; left: 0; background: var(--paper); z-index: 1; font-weight: 500; white-space: nowrap; color: var(--ink-2); box-shadow: 1px 0 0 var(--line); }
.matrix tr.grp th { background: var(--sheet); font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding-top: 18px; }
.matrix tr.grp td { background: var(--sheet); }
.matrix td { color: var(--ink); font-variant-numeric: tabular-nums; }
.matrix td.val { font: 500 16px var(--serif); }
.matrix td.best { background: color-mix(in srgb, var(--good-bg) 70%, transparent); }
.mk-yes, .mk-no, .mk-maybe { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; transform: scale(0); transition: transform .5s var(--ease-out); transition-delay: calc(var(--i, 0) * 25ms); }
.in .mk-yes, .in .mk-no, .in .mk-maybe { transform: none; }
.mk-yes { background: var(--good-bg); color: var(--good); }
.mk-no { background: var(--bad-bg); color: var(--bad); }
.mk-maybe { background: var(--warn-bg); color: var(--warn); font-size: 12px; font-weight: 700; }
.mk-yes svg, .mk-no svg { width: 14px; height: 14px; }
.matrix small { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; font-family: var(--sans); }

/* ———————— calendar ———————— */

.cal-grid { overflow-x: auto; background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow-1); padding: 8px; scrollbar-width: thin; }
.cal-grid table { border-collapse: separate; border-spacing: 4px; min-width: 960px; width: 100%; font-size: 13px; table-layout: fixed; }
.cal-grid thead th:first-child, .cal-grid tbody th { width: 150px; }
.cal-grid thead th small { display: block; font-size: 9.5px; letter-spacing: 0; color: var(--gold); white-space: nowrap; }
.cal th { font-weight: 500; color: var(--muted); padding: 6px 4px; }
.cal thead th { font-size: 11px; letter-spacing: .06em; }
.cal thead th b { display: block; font: 400 19px var(--serif); color: var(--ink); letter-spacing: 0; }
.cal thead th.hl b { color: var(--gold); }
.cal tbody th { text-align: left; white-space: nowrap; font: 400 16px var(--serif); color: var(--ink); padding-right: 12px; }
.cal td { height: 38px; border-radius: 8px; background: var(--sheet); position: relative; opacity: 0; transform: scale(.6); transition: .5s var(--ease-out); transition-delay: calc(var(--i) * 12ms); }
.cal.in td { opacity: 1; transform: none; }
.cal td.open { background: var(--good-bg); }
.cal td.open::after { content: "Open"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--good); }
.cal td.booked { background: repeating-linear-gradient(135deg, var(--bad-bg) 0 5px, transparent 5px 10px); }
.cal td.closed { background: repeating-linear-gradient(135deg, var(--line) 0 2px, transparent 2px 7px); }
.cal td.ask::after { content: "?"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: 12px; }
.cal-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .cal-notes { grid-template-columns: 1fr; } }
.note { background: var(--paper); border-radius: var(--r-s); padding: 20px 22px; border: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2); }
.note b { display: block; font: 400 20px/1.2 var(--serif); color: var(--ink); margin-bottom: 6px; }
.avail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 760px) { .avail-list { grid-template-columns: 1fr; } }
.avail { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-s); padding: 14px; font-size: 14px; }
.avail img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; }
.avail b { font: 400 18px var(--serif); display: block; }
.avail p { margin: 3px 0 0; color: var(--ink-2); }
.avail a { color: var(--gold); font-weight: 600; text-decoration: none; }
.status { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 99px; margin-left: 6px; vertical-align: 2px; }
.st-cal { background: var(--good-bg); color: var(--good); }
.st-ask { background: var(--warn-bg); color: var(--warn); }

/* ———————— reviews wall ———————— */
.reviews-sec { background: var(--sheet); overflow: hidden; }
.wall { columns: 3 320px; column-gap: 20px; }
.quote { break-inside: avoid; margin: 0 0 20px; background: var(--paper); border-radius: var(--r); padding: 26px 26px 22px; box-shadow: var(--shadow-1); position: relative; }
.quote::before { content: "\201C"; position: absolute; right: 20px; top: 2px; font: 400 90px/1 var(--serif); color: var(--gold-3); }
.quote.theme::before { content: none; }
.quote .kicker { font: 600 10.5px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.quote blockquote { margin: 0 0 16px; font: italic 400 21px/1.35 var(--serif); letter-spacing: -.01em; position: relative; }
.quote .who { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); }
.quote .who img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }
.quote ul { margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 6px; font-size: 13.5px; color: var(--ink-2); }
.quote li::before { content: "+"; color: var(--good); font-weight: 700; margin-right: 8px; }
.quote li.c::before { content: "–"; color: var(--bad); }

/* ———————— playbook ———————— */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-1); display: grid; gap: 10px; align-content: start; position: relative; overflow: hidden; }
.step .when { font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.step h4 { font-size: 24px; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.step::after { counter-increment: s; content: counter(s); position: absolute; right: 14px; bottom: -34px; font: italic 300 130px/1 var(--serif); color: var(--gold-3); z-index: 0; pointer-events: none; }
.step > * { position: relative; z-index: 1; }
.qs { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
@media (max-width: 760px) { .qs { grid-template-columns: 1fr; } }
.qs details { border-bottom: 1px solid var(--line); }
.qs summary { list-style: none; cursor: pointer; padding: 18px 36px 18px 0; font: 400 20px/1.3 var(--serif); position: relative; }
.qs summary::-webkit-details-marker { display: none; }
.qs summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform .35s var(--ease-out); }
.qs details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.qs details p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; }

/* ———————— picks ———————— */
.picks { background: linear-gradient(180deg, var(--ivory), var(--gold-3)); text-align: center; overflow: hidden; }
.picks .lede { margin-inline: auto; }
.pick-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 36px 0 30px; min-height: 120px; }
.pick { width: 150px; text-align: center; animation: rise .7s var(--ease-out) both; animation-delay: calc(var(--i) * 90ms); color: var(--ink); }
.pick img { width: 150px; height: 110px; object-fit: cover; border-radius: 16px; margin-bottom: 10px; box-shadow: var(--shadow-1); }
.pick b { font: 400 17px/1.2 var(--serif); }
.pick-empty { font: italic 400 22px var(--serif); color: var(--muted); align-self: center; }
@keyframes rise { from { opacity: 0; transform: translateY(20px) scale(.96); } }
.name-in { background: var(--paper); border: 1px solid var(--line-2); color: var(--ink); border-radius: 99px; padding: 14px 20px; font: 500 15px var(--sans); width: min(320px, 100%); text-align: center; box-shadow: var(--shadow-1); }
.name-in::placeholder { color: var(--muted); }
.name-in:focus { outline: 2px solid var(--gold-2); outline-offset: 2px; }
.picks .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.picked-by { display: inline-flex; margin: 0 auto 30px; gap: 10px; align-items: center; background: var(--paper); color: var(--ink); padding: 10px 12px 10px 18px; border-radius: 99px; font-size: 14px; box-shadow: var(--shadow-1); flex-wrap: wrap; justify-content: center; }

/* ———————— compare tray + sheet ———————— */
.tray { position: fixed; left: 50%; bottom: 18px; z-index: 40; translate: -50% 140%; transition: translate .6s var(--ease-out); background: var(--dusk); color: var(--on-dusk); border-radius: 99px; padding: 8px 8px 8px 12px; display: flex; gap: 10px; align-items: center; box-shadow: 0 20px 50px -18px rgba(0,0,0,.6); max-width: calc(100% - 24px); }
.tray.on { translate: -50% 0; }
.tray .faces { display: flex; }
.tray .faces img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--dusk); margin-left: -10px; animation: rise .4s var(--ease-out); }
.tray .faces img:first-child { margin-left: 0; }
.tray span { font-size: 14px; white-space: nowrap; padding: 0 4px; }
.tray button.x { border: 0; background: none; color: rgba(243,237,226,.6); padding: 8px; }
.sheet { position: fixed; inset: 0; z-index: 80; display: grid; align-items: end; background: rgba(10,13,11,.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; transition: opacity .4s; pointer-events: none; }
.sheet.on { opacity: 1; pointer-events: auto; }
.sheet-body { background: var(--ivory); border-radius: 28px 28px 0 0; max-height: 92vh; overflow: auto; transform: translateY(40px); transition: transform .6s var(--ease-out); padding: 26px var(--gut) 40px; }
.sheet.on .sheet-body { transform: none; }
.sheet-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sheet-head h3 { font-size: 34px; }
.cmp-grid { display: grid; gap: 16px; grid-template-columns: repeat(var(--n), minmax(220px, 1fr)); overflow-x: auto; }
.cmp-col { background: var(--paper); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-1); animation: rise .6s var(--ease-out) both; animation-delay: calc(var(--i) * 80ms); }
.cmp-col img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.cmp-col .in-c { padding: 16px 18px 20px; }
.cmp-col h4 { font-size: 24px; margin-bottom: 12px; }
.cmp-col dl { margin: 0; display: grid; gap: 0; }
.cmp-col dt { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 12px; }
.cmp-col dd { margin: 2px 0 0; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.cmp-col dd.v { font: 500 20px var(--serif); }
.cmp-col dd.win { color: var(--good); }
.cmp-col dd.win::after { content: "  ✓ best"; font: 700 11px var(--sans); letter-spacing: .06em; }

/* ———————— footer ———————— */
.foot { background: var(--paper); color: var(--ink-2); padding: 80px 0 40px; font-size: 14px; border-top: 1px solid var(--line); }
.foot .big-word { font: italic 300 clamp(60px, 14vw, 210px)/.85 var(--serif); letter-spacing: -.05em; color: var(--ink); margin-bottom: 50px; }
.foot .big-word span { color: var(--gold); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h5 { font: 600 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.foot a { color: var(--ink); text-decoration: none; }
.foot a:hover { color: var(--gold); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.changes li { padding-left: 16px; position: relative; }
.changes li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); }
.theme-btn { border: 1px solid var(--line-2); background: var(--paper); color: var(--ink); border-radius: 99px; padding: 8px 14px; font-size: 13px; margin-top: 14px; }

/* ———————— venue page ———————— */
.v-hero { position: relative; height: min(92svh, 900px); min-height: 560px; color: #fff; overflow: hidden; background: var(--dusk); display: grid; align-items: end; isolation: isolate; }
.v-hero > img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; z-index: -2; will-change: transform; }
.v-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,13,11,.92) 0%, rgba(10,13,11,.6) 34%, rgba(10,13,11,.22) 62%, rgba(10,13,11,.5) 100%); }
.v-hero .wrap { padding-bottom: clamp(40px, 7vh, 80px); }
.v-hero h1 { font-size: clamp(48px, 8vw, 118px); letter-spacing: -.045em; line-height: .95; margin: 18px 0 16px; max-width: 14ch; }
.v-hero .eyebrow { color: var(--gold-2); }
.v-hero .where { font-size: 16px; color: rgba(255,255,255,.8); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.back { position: absolute; top: 84px; left: var(--gut); z-index: 3; display: inline-flex; gap: 8px; align-items: center; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; background: rgba(16,21,18,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 9px 15px 9px 12px; border-radius: 99px; }
.back svg { width: 16px; height: 16px; }
.facts { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow-2); margin-top: -54px; position: relative; z-index: 5; overflow: hidden; }
.facts > div { padding: 22px 22px 20px; border-right: 1px solid var(--line); display: grid; gap: 4px; }
.facts > div:last-child { border-right: 0; }
.facts b { font: 400 clamp(24px, 2.6vw, 34px)/1.05 var(--serif); letter-spacing: -.02em; }
.facts span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.facts small { font-size: 12.5px; color: var(--ink-2); }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr 1fr; } .facts > div { border-bottom: 1px solid var(--line); } .facts > div:last-child { grid-column: span 2; } }
.gallery { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px var(--gut) 18px; margin: 0 calc(var(--gut) * -1); scrollbar-width: none; cursor: grab; }
.gallery::-webkit-scrollbar { display: none; }
.gallery.drag { cursor: grabbing; scroll-snap-type: none; }
.gallery button { flex: 0 0 auto; height: clamp(260px, 42vw, 460px); border: 0; padding: 0; border-radius: 18px; overflow: hidden; scroll-snap-align: start; background: var(--sheet); position: relative; }
.gallery button img { height: 100%; width: auto; max-width: none; object-fit: cover; transition: transform 1s var(--ease-out); pointer-events: none; }
.gallery button:hover img { transform: scale(1.04); }
.gallery-nav { display: flex; gap: 8px; }
.gallery-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--paper); display: grid; place-items: center; }
.gallery-nav svg { width: 18px; height: 18px; }
.v-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(30px, 5vw, 70px); align-items: start; }
@media (max-width: 960px) { .v-grid { grid-template-columns: minmax(0, 1fr); } }
.v-grid > * { min-width: 0; }
.v-main { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(50px, 7vw, 84px); min-width: 0; }
.v-side { position: sticky; top: 90px; display: grid; gap: 16px; }
@media (max-width: 960px) { .v-side { position: static; } }
.block h2 { font-size: clamp(32px, 3.6vw, 46px); letter-spacing: -.03em; margin: 12px 0 18px; }
.block > p { font-size: 17px; color: var(--ink-2); margin: 0 0 14px; }
.verdict-box { font: italic 400 clamp(22px, 2.4vw, 28px)/1.35 var(--serif); letter-spacing: -.01em; border-left: 2px solid var(--gold); padding: 4px 0 4px 22px; margin: 22px 0 0; color: var(--ink); }
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
@media (max-width: 640px) { .pc { grid-template-columns: 1fr; } }
.pc > div { background: var(--paper); border-radius: var(--r-s); padding: 20px 22px; border: 1px solid var(--line); }
.pc h4 { font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.pc .pro h4 { color: var(--good); }
.pc .con h4 { color: var(--bad); }
.pc ul { margin: 0; padding: 0 0 0 18px; display: grid; gap: 7px; font-size: 15px; color: var(--ink-2); }
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 640px) { .incl { grid-template-columns: 1fr; } }
.incl li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; font-size: 15px; color: var(--ink-2); padding: 10px 0; border-bottom: 1px solid var(--line); align-items: start; }
.incl li svg { width: 22px; height: 22px; color: var(--good); background: var(--good-bg); border-radius: 50%; padding: 4px; }
.addons { width: 100%; border-collapse: collapse; font-size: 15px; }
.addons td { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.addons td:last-child { text-align: right; font: 500 17px var(--serif); color: var(--ink); padding-left: 16px; width: 42%; }
.price-card { background: linear-gradient(160deg, var(--paper), var(--gold-3)); color: var(--ink); border: 1px solid color-mix(in srgb, var(--gold-2) 55%, transparent); box-shadow: var(--shadow-1); border-radius: var(--r); padding: 26px; display: grid; gap: 16px; position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; width: 300px; height: 300px; right: -120px; top: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(214,189,142,.35), transparent 65%); pointer-events: none; }
.price-card .k { font: 600 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.price-card .big { font: 300 60px/1 var(--serif); letter-spacing: -.04em; }
.price-card .big small { font-size: 18px; color: var(--muted); letter-spacing: 0; }
.price-card p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.price-card .gauge { height: 8px; border-radius: 4px; background: var(--line); position: relative; }
.price-card .gauge .b { position: absolute; top: 0; bottom: 0; background: color-mix(in srgb, var(--good) 35%, transparent); border-radius: 4px; }
.price-card .gauge .m { position: absolute; top: -5px; width: 3px; height: 18px; background: var(--gold); border-radius: 2px; transition: left 1.2s var(--ease-out); box-shadow: 0 0 10px var(--gold-2); }
.price-card .gauge-l { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
.price-card .guests { color: var(--ink-2); }
.price-card .guests output { color: var(--ink); }
.price-card input[type="range"] { width: 100%; }
.side-card { background: var(--paper); border-radius: var(--r); padding: 22px; border: 1px solid var(--line); display: grid; gap: 12px; font-size: 14.5px; }
.side-card h4 { font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.side-card a.btn { justify-content: center; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: 15px; margin: 0; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; color: var(--ink); }
.rv-sources { display: grid; gap: 10px; margin-bottom: 22px; }
.rv-src { display: grid; grid-template-columns: 110px 1fr auto; gap: 14px; align-items: center; font-size: 14px; }
.rv-src .meter { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.rv-src .meter i { display: block; height: 100%; width: 0; background: var(--gold); border-radius: 3px; transition: width 1.2s var(--ease-out); }
.in .rv-src .meter i { width: var(--w); }
.rv-src b { font: 500 17px var(--serif); }
.big-quote { font: italic 300 clamp(28px, 3.4vw, 44px)/1.2 var(--serif); letter-spacing: -.02em; margin: 10px 0 8px; }
.mini-map { height: 320px; border-radius: var(--r); overflow: hidden; }
.mini-map .leaflet-tile-pane { filter: grayscale(.6) sepia(.25) brightness(1.02); }
.nextprev { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nextprev a { position: relative; display: grid; align-items: end; min-height: 220px; border-radius: var(--r); overflow: hidden; text-decoration: none; color: #fff; padding: 22px; isolation: isolate; }
.nextprev a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease-out); }
.nextprev a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,13,11,.8), rgba(10,13,11,.1)); }
.nextprev a:hover img { transform: scale(1.05); }
.nextprev small { font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.nextprev b { font: 400 30px/1.1 var(--serif); display: block; margin-top: 6px; }
.nextprev a:last-child { text-align: right; }
@media (max-width: 640px) { .nextprev { grid-template-columns: 1fr; } }
.src { font-size: 12.5px; color: var(--muted); }
.src a { color: var(--muted); }

/* ———————— lightbox ———————— */
.lb { position: fixed; inset: 0; z-index: 120; background: rgba(8,10,9,.94); display: grid; grid-template-rows: 1fr auto; opacity: 0; pointer-events: none; transition: opacity .35s; }
.lb.on { opacity: 1; pointer-events: auto; }
.lb-stage { position: relative; display: grid; place-items: center; overflow: hidden; touch-action: pan-y; }
.lb-stage img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 10px; transition: transform .45s var(--ease-out), opacity .3s; }
.lb-cap { color: rgba(243,237,226,.75); text-align: center; font-size: 14px; padding: 10px 20px 4px; min-height: 1.5em; }
.lb-strip { display: flex; gap: 8px; justify-content: center; padding: 10px 16px 22px; overflow-x: auto; }
.lb-strip button { flex: 0 0 auto; width: 64px; height: 46px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; opacity: .5; transition: .25s; background: none; }
.lb-strip button.on { border-color: var(--gold-2); opacity: 1; }
.lb-strip img { width: 100%; height: 100%; object-fit: cover; }
.lb .iconbtn { position: absolute; }
.lb .close { top: 18px; right: 18px; }
.lb .prev { left: 18px; top: 50%; margin-top: -21px; }
.lb .next { right: 18px; top: 50%; margin-top: -21px; }
.lb .count { position: absolute; top: 26px; left: 24px; color: rgba(243,237,226,.7); font: 500 13px var(--sans); letter-spacing: .1em; }
@media (max-width: 640px) { .lb .prev, .lb .next { display: none; } }

/* ———————— bits ———————— */
.toast { position: fixed; left: 50%; top: 84px; translate: -50% -20px; z-index: 130; background: var(--dusk); color: var(--on-dusk); padding: 12px 20px; border-radius: 99px; font-size: 14px; opacity: 0; transition: .4s var(--ease-out); pointer-events: none; box-shadow: var(--shadow-2); }
.toast.on { opacity: 1; translate: -50% 0; }
.center { text-align: center; }
.mt { margin-top: 36px; }
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.stamp { display: inline-flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); }
.stamp::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px var(--good-bg); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--paper); padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ———————— phones: the toolbar is too tall to pin ———————— */
@media (max-width: 700px) {
  .tools { position: static; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; margin-bottom: 18px; padding-top: 0; }
  .tools-row { gap: 8px; }
  .chip { padding: 7px 12px; font-size: 13px; }
  .seg button { padding: 6px 11px; font-size: 13px; }
  .guests input[type="range"] { width: 120px; }
  .hero .eyebrow { letter-spacing: .16em; }
}

/* ———————— compare table: names + photos stay pinned ———————— */
.matrix thead th { z-index: 3; box-shadow: 0 1px 0 var(--line); }
.matrix thead th:first-child { left: 0; z-index: 4; }
.matrix thead th img { transition: transform .4s var(--ease-out), width .3s, height .3s; }
@media (min-width: 1100px) {
  /* wide enough to show every column, so let the header stick to the window, under the top bar */
  .matrix-wrap { overflow: visible; }
  .matrix thead th { top: 64px; }
  .matrix thead tr:first-child th:first-child { border-top-left-radius: var(--r); }
  .matrix thead tr:first-child th:last-child { border-top-right-radius: var(--r); }
}
@media (max-width: 1099px) {
  /* narrower: the table scrolls in its own box both ways, header and row labels pinned */
  .matrix-wrap { max-height: calc(100svh - 110px); overflow: auto; overscroll-behavior: contain; }
  .matrix thead th { top: 0; }
  .matrix thead th img { width: 48px; height: 48px; }
}
.matrix { table-layout: fixed; }
.matrix thead th:first-child { width: 170px; }

@media (max-width: 1099px) { .matrix thead th a { font-size: 14px; overflow-wrap: anywhere; hyphens: auto; } }

/* ———————— "What matters most?" finder ———————— */
.finder { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-1); margin-bottom: 18px; display: grid; gap: 18px; }
.finder-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; }
.finder h3 { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -.02em; }
.finder-head p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; }
.presets { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.presets > span, .musts-label { font: 600 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip.ghosty { border-style: dashed; color: var(--muted); }
.prios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .prios { grid-template-columns: repeat(2, 1fr); } }
.prio { display: flex; justify-content: space-between; align-items: center; gap: 10px; text-align: left; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--sheet); font: 500 14.5px/1.25 var(--sans); color: var(--ink); transition: background .25s, border-color .25s, transform .2s, box-shadow .25s; }
.prio:hover { border-color: var(--gold-2); }
.prio:active { transform: scale(.98); }
.prio .dots { display: inline-flex; gap: 4px; flex: none; }
.prio .dots b { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--line-2); transition: background .25s, border-color .25s; }
.prio.lv1 { background: var(--gold-3); border-color: var(--gold-2); }
.prio.lv2 { background: linear-gradient(160deg, var(--gold-3), color-mix(in srgb, var(--gold-2) 45%, var(--gold-3))); border-color: var(--gold); box-shadow: 0 6px 18px -10px rgba(169,131,75,.7); }
.prio.lv1 .dots b:first-child, .prio.lv2 .dots b { background: var(--gold); border-color: var(--gold); }
.musts { display: flex; gap: 8px 10px; flex-wrap: wrap; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.must-range { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); padding: 4px 6px 4px 12px; border: 1px solid var(--line-2); border-radius: 99px; background: var(--paper); }
.must-range output { font: 500 15px var(--serif); color: var(--ink); min-width: 2.2ch; }
.must-range input[type="range"] { width: 110px; }

/* match badge, reasons, best-match feature */
.card .match { position: absolute; left: 14px; top: 14px; z-index: 2; display: flex; align-items: baseline; gap: 5px; padding: 7px 13px 6px; border-radius: 99px; background: rgba(255,253,249,.92); color: var(--ink); box-shadow: 0 4px 14px -6px rgba(0,0,0,.35); animation: rise .5s var(--ease-out); }
.card .match b { font: 500 20px/1 var(--serif); color: var(--gold); }
.card .match small { font: 600 10px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card .why { display: flex; flex-wrap: wrap; gap: 6px; }
.card .why span { font-size: 12.5px; font-weight: 500; padding: 5px 10px; border-radius: 99px; background: var(--good-bg); color: var(--good); animation: rise .45s var(--ease-out) both; }
.card .why span.fail { background: var(--bad-bg); color: var(--bad); }
.card .fav-tag { left: auto; right: 64px; top: 20px; bottom: auto; }
.card.out { opacity: .38; filter: grayscale(.7); pointer-events: auto; }
@media (min-width: 1061px) {
  .cards > .card.feature { grid-column: 1 / -1; }
  .cards > .card.feature > a { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 460px; }
  .cards > .card.feature .ph { aspect-ratio: auto; height: 100%; border-radius: var(--r) 0 0 var(--r); }
  .cards > .card.feature .body { padding: clamp(28px, 3.4vw, 48px); align-content: center; gap: 16px; }
  .cards > .card.feature h3 { font-size: clamp(34px, 3.4vw, 48px); }
  .cards > .card.feature .verdict { font-size: 17px; }
  .cards > .card.feature .metrics b { font-size: 28px; }
  .cards > .card.feature .heart { right: calc(100% / 2.4 + 14px); }
  .cards > .card.feature .fav-tag { right: calc(100% / 2.4 + 64px); }
}
.card.feature { box-shadow: 0 0 0 2px var(--gold-2), var(--shadow-2); }

/* closing tile: fills the last row (10 cards + a 2-wide tile = 4 even rows of 3) */
.cta-card { grid-column: span 2; display: grid; align-items: center; padding: clamp(28px, 4vw, 48px); background: radial-gradient(120% 140% at 100% 0%, var(--gold-3), var(--paper) 60%); border: 1px solid color-mix(in srgb, var(--gold-2) 50%, transparent); }
.cta-card h3 { font-size: clamp(30px, 3vw, 42px); margin: 14px 0 10px; }
.cta-card p { margin: 0 0 22px; color: var(--ink-2); max-width: 42ch; }
@media (max-width: 640px) { .cta-card { grid-column: auto; } }

/* shared-picks banner: the sender's priorities */
.picked-by .cares { flex-basis: 100%; text-align: center; font-size: 13px; color: var(--muted); }

/* compare header: photos line up even when a name fits on one line */
.matrix thead th { vertical-align: top; }
.matrix thead th a span { min-height: 2.3em; display: block; }
