:root {
  color-scheme: dark;
  --ink: #fff7e8;
  --muted: #cbb99e;
  --paper: #0c0705;
  --panel: rgba(31, 17, 11, 0.76);
  --panel-strong: rgba(54, 29, 17, 0.9);
  --line: rgba(255, 214, 153, 0.18);
  --accent: #f0a43a;
  --accent-strong: #ffd28a;
  --cherry: #9f2f28;
  --olive: #9a9b5d;
  --cream: #fff1cc;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --radius: 8px;
}

[data-particles="off"] #particleCanvas {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 164, 58, 0.2), transparent 26rem),
    radial-gradient(circle at 80% 14%, rgba(159, 47, 40, 0.16), transparent 24rem),
    linear-gradient(180deg, #140905 0%, #0c0705 48%, #080403 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  animation: page-fade 420ms ease both;
  overflow-x: hidden;
}

@keyframes page-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 16% 76%, rgba(240, 164, 58, 0.08), transparent 19rem),
    radial-gradient(ellipse at 86% 72%, rgba(154, 155, 93, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(255, 230, 180, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 230, 180, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 84%);
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 7, 5, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
}

.brand-mark,
.avatar {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 138, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 241, 204, 0.42), transparent 28%),
    linear-gradient(135deg, rgba(240, 164, 58, 0.42), rgba(159, 47, 40, 0.36));
  color: var(--cream);
  box-shadow: 0 0 36px rgba(240, 164, 58, 0.28);
  font-weight: 900;
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
}

.brand-badge {
  border-radius: 50%;
  object-fit: cover;
}

.avatar {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.2rem;
  font-size: 3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.5vw, 1.15rem);
  color: var(--muted);
  font-size: 0.9rem;
  scrollbar-width: thin;
}

.nav-links a {
  min-height: 2.35rem;
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--accent);
}

.icon-button {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 241, 204, 0.08);
  color: var(--accent-strong);
  cursor: pointer;
}

.particle-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 4.6rem);
  place-items: center;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 1rem;
  text-align: center;
}

.particle-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 19% 34%, rgba(255, 210, 138, 0.18), transparent 10rem),
    radial-gradient(circle at 78% 28%, rgba(159, 47, 40, 0.22), transparent 14rem),
    radial-gradient(circle at 62% 74%, rgba(154, 155, 93, 0.16), transparent 16rem),
    linear-gradient(135deg, transparent 0 13%, rgba(255, 210, 138, 0.06) 13.2% 13.8%, transparent 14% 100%),
    linear-gradient(45deg, transparent 0 72%, rgba(255, 241, 204, 0.05) 72.2% 72.8%, transparent 73% 100%),
    linear-gradient(180deg, rgba(8, 4, 3, 0.1), rgba(8, 4, 3, 0.92));
}

.particle-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper));
}

.profile-card {
  width: min(780px, 100%);
  padding: clamp(1.5rem, 5vw, 3.2rem);
  border: 1px solid rgba(255, 210, 138, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 5, 3, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.profile-card::before {
  display: block;
  width: min(22rem, 62%);
  height: 1px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 138, 0.72), transparent);
  content: "";
}

.cocktail-signatures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 1.4rem 0 1.6rem;
}

.glass-glyph {
  display: grid;
  min-height: 7.5rem;
  align-items: end;
  justify-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 210, 138, 0.18);
  border-radius: var(--radius);
  padding: 0.8rem 0.6rem;
  background:
    radial-gradient(circle at 50% 68%, rgba(240, 164, 58, 0.12), transparent 4rem),
    rgba(255, 241, 204, 0.035);
}

.glass-glyph span {
  position: relative;
  display: block;
  width: 4.6rem;
  height: 4.4rem;
}

.glass-glyph strong {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.martini-glyph span::before {
  position: absolute;
  inset: 0.25rem 0.15rem auto;
  height: 2.5rem;
  border-right: 2px solid rgba(255, 210, 138, 0.78);
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%);
  content: "";
}

.martini-glyph span::after {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 2.6rem;
  height: 2rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  transform: translateX(-50%) skewX(-20deg);
  content: "";
}

.gibson-glyph span::before,
.dirty-martini-glyph span::before,
.vesper-glyph span::before,
.hanky-panky-glyph span::before {
  position: absolute;
  inset: 0.25rem 0.15rem auto;
  height: 2.5rem;
  border-right: 2px solid rgba(255, 210, 138, 0.78);
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%);
  content: "";
}

.gibson-glyph span::after,
.dirty-martini-glyph span::after,
.vesper-glyph span::after,
.hanky-panky-glyph span::after {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 2.6rem;
  height: 2rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  transform: translateX(-50%) skewX(-20deg);
  content: "";
}

.last-word-glyph span::before {
  position: absolute;
  left: 50%;
  top: 0.35rem;
  width: 4.1rem;
  height: 2.15rem;
  border: 2px solid rgba(255, 210, 138, 0.78);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  background:
    radial-gradient(circle at 58% 36%, rgba(154, 155, 93, 0.28) 0 0.35rem, transparent 0.38rem),
    linear-gradient(180deg, rgba(154, 155, 93, 0.2), rgba(240, 164, 58, 0.24));
  transform: translateX(-50%);
  content: "";
}

.last-word-glyph span::after {
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 2.7rem;
  height: 2.4rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  transform: translateX(-50%) skewX(-16deg);
  content: "";
}

.rocks-glyph span::before,
.highball-glyph span::before {
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 3.3rem;
  height: 3.55rem;
  border: 2px solid rgba(255, 210, 138, 0.78);
  border-top-width: 1px;
  border-radius: 0 0 0.55rem 0.55rem;
  transform: translateX(-50%);
  content: "";
}

.rocks-glyph span::after {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  width: 2.4rem;
  height: 1.7rem;
  border-radius: 0.25rem;
  background:
    linear-gradient(135deg, rgba(255, 241, 204, 0.16) 0 38%, transparent 39%),
    rgba(240, 164, 58, 0.46);
  transform: translateX(-50%) rotate(-5deg);
  content: "";
}

.coupe-glyph span::before {
  position: absolute;
  left: 50%;
  top: 0.35rem;
  width: 4.1rem;
  height: 2.15rem;
  border: 2px solid rgba(255, 210, 138, 0.78);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, rgba(255, 241, 204, 0.2), rgba(240, 164, 58, 0.3));
  transform: translateX(-50%);
  content: "";
}

.coupe-glyph span::after {
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 2.7rem;
  height: 2.4rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.78);
  border-left: 2px solid rgba(255, 210, 138, 0.78);
  transform: translateX(-50%) skewX(-16deg);
  content: "";
}

.highball-glyph span::before {
  height: 4.05rem;
  width: 2.35rem;
  background: linear-gradient(180deg, rgba(159, 47, 40, 0.18), rgba(240, 164, 58, 0.34));
}

.highball-glyph span::after {
  position: absolute;
  top: 0.15rem;
  right: 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(154, 155, 93, 0.8);
  border-radius: 50%;
  content: "";
}

.eyebrow,
.mini-label,
.post-date,
.article-meta {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.02;
  text-shadow: 0 0 48px rgba(240, 164, 58, 0.34);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.28;
}

.hero-lede,
.page-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.control-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.button,
.chip {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.68rem 1.1rem;
  background: rgba(255, 241, 204, 0.07);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 138, 0.64);
  box-shadow: 0 14px 36px rgba(240, 164, 58, 0.12);
}

.button.primary {
  border-color: rgba(255, 210, 138, 0.78);
  background: linear-gradient(135deg, rgba(240, 164, 58, 0.38), rgba(159, 47, 40, 0.26));
  color: white;
  box-shadow: 0 0 30px rgba(240, 164, 58, 0.22);
}

.button.full {
  width: 100%;
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.section,
.page,
.article-layout {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.intro-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.intro-grid {
  padding: 2rem 0 2rem;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 0 0 3rem;
}

.intro-grid article,
.post-card,
.toolbar,
.guide-card,
.aside-block,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 241, 204, 0.035), rgba(159, 47, 40, 0.055)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-grid article,
.guide-card,
.aside-block,
.feature-card {
  padding: 1.25rem;
}

.feature-card {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  color: rgba(255, 210, 138, 0.16);
  font-size: 5rem;
  line-height: 1;
}

.cocktail-card::after {
  content: "♢";
}

.camera-card::after {
  content: "□";
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.post-list {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.post-list.compact {
  padding-bottom: 0;
}

.post-card {
  display: block;
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.post-card:hover,
.feature-card:hover,
.friend-profile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 138, 0.58);
  box-shadow: 0 26px 72px rgba(240, 164, 58, 0.14);
}

a:not(.brand):not(.menu-drink):not(.post-card):not(.friend-profile):hover {
  color: var(--accent-strong);
}

.post-card p,
.intro-grid p,
.guide-card p,
.guide-card li,
.feature-card p,
.article-aside {
  color: var(--muted);
}

.post-list:not(.compact) .post-card h2,
.post-list:not(.compact) .post-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}

.post-card.featured {
  border-left: 5px solid var(--accent);
}

.cocktail-note {
  background:
    radial-gradient(circle at 92% 18%, rgba(240, 164, 58, 0.14), transparent 9rem),
    var(--panel);
}

.read-more {
  color: var(--accent-strong);
  font-weight: 900;
}

.page {
  padding-top: clamp(2rem, 7vw, 5rem);
}

.page-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.toolbar span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.note-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(154, 155, 93, 0.08), transparent 38%),
    rgba(13, 7, 5, 0.78);
  box-shadow: var(--shadow);
}

.note-rule span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-grid,
.friend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: 4rem;
}

.friend-showcase {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.friend-profile {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 4vw, 2rem);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.friend-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 22rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 210, 138, 0.35);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(240, 164, 58, 0.14);
}

.friend-copy {
  position: relative;
  z-index: 1;
}

.friend-copy h2 {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.friend-copy p:last-child {
  color: #f4dfbd;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 12rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 4rem;
}

.photo-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(8, 4, 3, 0.82)),
    radial-gradient(circle at 30% 20%, rgba(255, 210, 138, 0.22), transparent 8rem),
    linear-gradient(135deg, rgba(48, 25, 15, 0.96), rgba(12, 7, 5, 0.96));
  box-shadow: var(--shadow);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-tile strong {
  font-size: 1.25rem;
}

code,
pre {
  border-radius: 6px;
  background: rgba(255, 241, 204, 0.08);
}

code {
  padding: 0.08rem 0.28rem;
}

pre {
  overflow-x: auto;
  padding: 1rem;
  border: 1px solid var(--line);
}

pre code {
  padding: 0;
  background: transparent;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 52rem) minmax(10rem, 13rem);
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 2rem);
  padding: clamp(2rem, 7vw, 5rem) 0 4rem;
}

.article {
  max-width: none;
}

.article-header {
  margin-bottom: 2rem;
}

.article h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.article h2 {
  margin-top: 2rem;
}

.article p {
  color: #f4dfbd;
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.86;
}

.article a {
  border-bottom: 1px solid rgba(255, 210, 138, 0.42);
  color: var(--accent-strong);
}

.article blockquote {
  margin: 1.6rem 0;
  border-left: 3px solid rgba(255, 210, 138, 0.72);
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--accent-strong);
  background: rgba(255, 241, 204, 0.035);
}

.article img {
  border: 1px solid rgba(255, 210, 138, 0.2);
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(0.96);
}

.article-endnote {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255, 210, 138, 0.2);
  padding-top: 1.25rem;
}

.article-endnote p {
  color: var(--muted);
  font-size: 0.98rem;
}

.schedule-article .article-deck {
  max-width: 45rem;
}

.schedule-board {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.schedule-section {
  border: 1px solid rgba(255, 210, 138, 0.18);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.25rem);
  background:
    linear-gradient(135deg, rgba(255, 241, 204, 0.045), rgba(255, 241, 204, 0.015)),
    rgba(9, 10, 10, 0.28);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.schedule-section h2 {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: schedule-item calc(var(--schedule-start, 1) - 1);
}

.schedule-list[start="16"] {
  --schedule-start: 16;
}

.schedule-list[start="30"] {
  --schedule-start: 30;
}

.schedule-list li {
  counter-increment: schedule-item;
  display: grid;
  grid-template-columns: minmax(5.4rem, auto) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  border: 1px solid rgba(255, 210, 138, 0.12);
  border-radius: 7px;
  padding: 0.68rem 0.78rem;
  background: rgba(255, 241, 204, 0.035);
}

.schedule-list li::before {
  content: counter(schedule-item, decimal-leading-zero);
  grid-column: 1 / -1;
  margin-bottom: -0.35rem;
  color: rgba(255, 210, 138, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.schedule-list time {
  color: var(--accent-strong);
  font-family: "Courier New", Consolas, monospace;
  font-size: 0.92rem;
  white-space: nowrap;
}

.schedule-list p {
  margin: 0;
  color: #f4dfbd;
  font-size: 0.98rem;
  line-height: 1.65;
}

.schedule-photo-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.35rem 0 0;
}

.schedule-photo-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 138, 0.16);
  border-radius: 7px;
  filter: saturate(0.92) contrast(0.98);
}

.schedule-photo-pair figcaption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-aside {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: grid;
  gap: 1rem;
  font-size: 0.92rem;
}

.article-aside .tag-row {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.45rem;
}

.article-aside .tag-row span {
  display: inline-flex;
  flex: 0 0 auto;
  max-width: 100%;
  align-items: center;
  white-space: nowrap;
  line-height: 1.2;
}

.article-layout .aside-block {
  padding: 1rem;
}

body:has(.article-layout) .gripe-rail {
  display: none;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--ink);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.gripe-rail {
  z-index: 8;
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 241, 204, 0.04), rgba(159, 47, 40, 0.06)),
    rgba(12, 7, 5, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.gripe-header,
.gripe-topline,
.gripe-pager {
  display: flex;
  align-items: center;
}

.gripe-header {
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.gripe-header h2 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.gripe-header > span {
  display: grid;
  min-width: 2rem;
  min-height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 210, 138, 0.36);
  border-radius: 50%;
  color: var(--accent-strong);
  font-weight: 900;
}

.gripe-list {
  display: grid;
  gap: 0.75rem;
}

.gripe-item {
  border: 1px solid rgba(255, 214, 153, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(255, 241, 204, 0.045);
}

.gripe-topline {
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.gripe-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

.gripe-item p {
  margin-bottom: 0.65rem;
  color: #f4dfbd;
  font-size: 0.92rem;
  line-height: 1.6;
}

.gripe-item time {
  color: var(--muted);
  font-size: 0.78rem;
}

.gripe-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.gripe-detail-link {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.gripe-detail-link:hover {
  text-decoration: underline;
}

.gripe-pager {
  justify-content: space-between;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.gripe-pager .chip {
  min-height: 2.2rem;
  padding: 0.42rem 0.7rem;
  font-size: 0.82rem;
}

.gripe-pager .chip:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.gripe-pager span {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.topic-card {
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 241, 204, 0.035), rgba(159, 47, 40, 0.055)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 138, 0.58);
  box-shadow: 0 26px 72px rgba(240, 164, 58, 0.14);
}

.button.secondary {
  border-color: rgba(255, 210, 138, 0.34);
  background: rgba(255, 241, 204, 0.06);
}

.chip.is-active {
  border-color: rgba(255, 210, 138, 0.82);
  background: rgba(240, 164, 58, 0.24);
  color: var(--cream);
}

/* Abstract bar menu redesign */
body {
  background:
    radial-gradient(circle at 50% -6rem, rgba(255, 210, 138, 0.12), transparent 28rem),
    radial-gradient(circle at 15% 32%, rgba(240, 164, 58, 0.09), transparent 18rem),
    radial-gradient(circle at 83% 68%, rgba(159, 47, 40, 0.08), transparent 18rem),
    linear-gradient(180deg, #120806 0%, #090403 52%, #050202 100%),
    #080403;
}

body::before {
  background:
    repeating-linear-gradient(0deg, rgba(255, 241, 204, 0.038) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 241, 204, 0.024) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 18% 31%, rgba(255, 210, 138, 0.07), transparent 16rem),
    radial-gradient(circle at 82% 69%, rgba(159, 47, 40, 0.06), transparent 16rem);
  background-size: auto;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66) 72%, rgba(0, 0, 0, 0.3));
}

body::after {
  position: fixed;
  inset: 1.1rem;
  z-index: -2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 210, 138, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(32deg, transparent 0 18%, rgba(255, 210, 138, 0.13) 18.08% 18.2%, transparent 18.32% 100%),
    linear-gradient(118deg, transparent 0 35%, rgba(154, 155, 93, 0.11) 35.08% 35.2%, transparent 35.32% 100%),
    linear-gradient(148deg, transparent 0 54%, rgba(159, 47, 40, 0.1) 54.08% 54.2%, transparent 54.32% 100%),
    linear-gradient(74deg, transparent 0 71%, rgba(69, 96, 104, 0.11) 71.08% 71.2%, transparent 71.32% 100%),
    radial-gradient(circle at 9% 23%, rgba(255, 210, 138, 0.22) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 29% 34%, rgba(154, 155, 93, 0.18) 0 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 52% 22%, rgba(255, 241, 204, 0.18) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 83% 41%, rgba(159, 47, 40, 0.2) 0 0.16rem, transparent 0.18rem);
  box-shadow:
    inset 0 0 0 1px rgba(255, 241, 204, 0.018),
    inset 0 0 90px rgba(0, 0, 0, 0.42);
  opacity: 0.78;
}

#particleCanvas {
  opacity: 0.62;
}

.bar-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 210, 138, 0.58);
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.bar-cursor::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--accent-strong);
  content: "";
  transform: translate(-50%, -50%);
}

.bar-cursor::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.35rem);
  padding: 0.22rem 0.45rem;
  border: 1px solid rgba(255, 210, 138, 0.24);
  border-radius: 999px;
  background: rgba(8, 4, 3, 0.88);
  color: var(--accent-strong);
  content: attr(data-drink);
  font-size: 0.68rem;
  font-weight: 900;
  opacity: 0;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.bar-cursor[data-active="true"] {
  width: 4.2rem;
  height: 4.2rem;
  border-color: rgba(255, 241, 204, 0.82);
  opacity: 0.9;
}

.bar-cursor[data-active="true"]::after {
  opacity: 1;
}

.bar-cursor[data-hidden="true"] {
  opacity: 0;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(8, 4, 3, 0.92), rgba(22, 11, 8, 0.76)),
    rgba(8, 4, 3, 0.78);
}

.brand-mark {
  border-radius: 28% 72% 43% 57% / 46% 30% 70% 54%;
}

.menu-hero {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 6rem) 0 2.5rem;
}

.menu-board {
  position: relative;
  border: 1px solid rgba(255, 210, 138, 0.28);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 2rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 241, 204, 0.06), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 210, 138, 0.04) 0 1px, transparent 1px 7rem),
    rgba(12, 7, 5, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.menu-board::after {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  left: 1.2rem;
  height: 0.7rem;
  border-top: 1px solid rgba(255, 210, 138, 0.14);
  border-bottom: 1px solid rgba(255, 210, 138, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(255, 210, 138, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 241, 204, 0.06) 0 1px, transparent 1px 4.5rem);
  content: "";
  pointer-events: none;
}

.menu-board::before,
.drink-page::before {
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 210, 138, 0.12);
  border-radius: var(--radius);
  content: "";
  pointer-events: none;
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr) minmax(16rem, 0.38fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.menu-kicker {
  position: relative;
  display: grid;
  min-height: 8.2rem;
  align-content: center;
  gap: 0.5rem;
  border-right: 1px solid rgba(255, 210, 138, 0.2);
  padding-right: 1rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-kicker::before,
.menu-kicker::after {
  position: absolute;
  content: "";
}

.menu-kicker::before {
  right: -0.26rem;
  top: 1rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 2.6rem 0 rgba(154, 155, 93, 0.78), 0 5.2rem 0 rgba(159, 47, 40, 0.72);
}

.menu-kicker::after {
  right: 0.62rem;
  bottom: 0.85rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 210, 138, 0.62), transparent);
}

.menu-mini-badge {
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(255, 210, 138, 0.34);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(240, 164, 58, 0.16);
}

.menu-title {
  min-width: 0;
}

.menu-title h1 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.menu-title h1::after {
  position: absolute;
  right: 0.1em;
  bottom: -0.24em;
  left: 0.05em;
  height: 0.12em;
  background:
    linear-gradient(90deg, rgba(255, 210, 138, 0.9), rgba(154, 155, 93, 0.45), transparent),
    radial-gradient(circle at 92% 45%, rgba(255, 241, 204, 0.8) 0 0.06em, transparent 0.07em);
  content: "";
}

.menu-board .menu-intro::after {
  content: "";
  display: none;
}

.lyric-plate {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.65rem 0 0.95rem;
  border: 1px solid rgba(255, 210, 138, 0.18);
  border-inline: 0;
  padding: 0.72rem 0.1rem 0.78rem;
  color: rgba(255, 241, 204, 0.88);
}

.lyric-plate p {
  margin: 0;
  color: #f5dfbc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.1vw, 1.65rem);
  font-style: italic;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(255, 210, 138, 0.14);
}

.lyric-source {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.44rem;
  color: rgba(255, 210, 138, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.record-icon {
  display: inline-block;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(255, 210, 138, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 241, 204, 0.82) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle, rgba(255, 210, 138, 0.18) 0 0.42rem, transparent 0.44rem),
    radial-gradient(circle, rgba(255, 241, 204, 0.08), rgba(20, 13, 10, 0.58));
  box-shadow: 0 0 18px rgba(255, 210, 138, 0.1);
}

.drink-heading::before,
.article-header::before {
  content: none;
  display: none;
}

.menu-intro .hero-lede {
  position: relative;
  grid-column: 3;
  justify-self: end;
  max-width: 21rem;
  margin-block: 0;
  border-left: 1px solid rgba(255, 210, 138, 0.3);
  padding: 0.9rem 0 0.95rem 1rem;
  color: var(--cream);
  font-size: clamp(1.02rem, 1.35vw, 1.34rem);
  line-height: 1.52;
  text-align: left;
}

.menu-intro .hero-lede::before {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  content: "After Hours Note";
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-intro .hero-lede::after {
  position: absolute;
  top: 1rem;
  left: -0.24rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 2.2rem 0 rgba(154, 155, 93, 0.8), 0 4.4rem 0 rgba(159, 47, 40, 0.72);
  content: "";
}

.hero-lede span {
  display: block;
}

.hero-note {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  color: var(--muted);
}

.hero-note p {
  max-width: 42rem;
  margin-bottom: 0;
}

.hero-note .hero-actions {
  justify-content: flex-end;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem 0 0.85rem;
}

.menu-drink {
  position: relative;
  display: grid;
  min-height: 17rem;
  align-content: end;
  gap: 0.35rem;
  border: 1px solid rgba(255, 210, 138, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 241, 204, 0.07), rgba(255, 241, 204, 0.02) 28%, transparent),
    rgba(14, 8, 6, 0.74);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-drink::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 36%, rgba(255, 210, 138, 0.09) 36.2% 36.8%, transparent 37% 100%),
    radial-gradient(circle, rgba(255, 210, 138, 0.2) 0 1px, transparent 1.4px) 11px 13px / 28px 28px;
  content: "";
  opacity: 0.55;
}

.menu-drink:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 138, 0.72);
  background-color: rgba(28, 13, 8, 0.86);
}

.menu-drink .drink-glyph {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.drink-name {
  position: relative;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-drink strong {
  position: relative;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.menu-drink p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
}

.menu-drink-group {
  grid-column: span 2;
  padding-right: clamp(7.25rem, 13vw, 9rem);
}

.menu-primary-link,
.menu-variants {
  position: relative;
}

.menu-primary-link {
  width: fit-content;
  border: 1px solid rgba(255, 210, 138, 0.34);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.menu-primary-link:hover {
  border-color: rgba(255, 210, 138, 0.72);
  background: rgba(255, 210, 138, 0.12);
}

.menu-variants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.menu-variants a {
  border: 1px solid rgba(255, 210, 138, 0.18);
  border-radius: calc(var(--radius) - 0.45rem);
  padding: 0.48rem 0.55rem;
  background: rgba(255, 241, 204, 0.035);
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.25;
  text-decoration: none;
}

.menu-variants a:hover {
  border-color: rgba(255, 210, 138, 0.54);
  background: rgba(255, 210, 138, 0.1);
}

.menu-variants span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drink-glyph {
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  place-items: center;
}

.drink-glyph > span {
  position: relative;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
}

.drink-portrait {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 210, 138, 0.22);
  border-radius: var(--radius);
  min-height: 5.4rem;
  padding: 0.6rem 1rem 0.6rem 0.55rem;
  background: rgba(255, 241, 204, 0.045);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drink-portrait .drink-glyph {
  width: 4.55rem;
  height: 4.55rem;
  overflow: visible;
}

.drink-portrait .drink-glyph > span {
  width: 5.2rem;
  height: 5.2rem;
  transform: scale(0.72);
  transform-origin: center;
}

.drink-icon-link {
  display: grid;
  color: inherit;
  place-items: center;
  text-decoration: none;
}

.drink-icon-link:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 0.2rem;
}

.drink-page {
  position: relative;
}

.drink-heading,
.article-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.drink-heading::after,
.article-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(18rem, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  content: "";
}

.post-card,
.toolbar,
.note-rule,
.guide-card,
.aside-block,
.feature-card,
.topic-card,
.friend-profile,
.photo-tile,
.gripe-rail,
.status-card,
.playlist-card,
.cellar-card {
  background:
    linear-gradient(145deg, rgba(255, 241, 204, 0.055), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255, 210, 138, 0.025) 0 1px, transparent 1px 12px),
    rgba(13, 7, 5, 0.78);
}

.note-list {
  max-width: 880px;
}

.note-card {
  border-left: 4px solid rgba(154, 155, 93, 0.72);
}

.post-card,
.guide-card,
.photo-tile,
.friend-profile,
.status-card,
.playlist-card,
.cellar-card {
  position: relative;
  overflow: hidden;
}

.post-card::before,
.guide-card::before,
.photo-tile::before,
.friend-profile::before,
.status-card::before,
.playlist-card::before,
.cellar-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 0 64%, rgba(154, 155, 93, 0.08) 64.2% 64.8%, transparent 65% 100%);
  content: "";
  pointer-events: none;
}

.tonight-board,
.playlist-grid,
.cellar-list {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.tonight-board,
.playlist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-card,
.playlist-card,
.cellar-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.status-card:hover,
.playlist-card:hover,
.cellar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 138, 0.58);
  box-shadow: 0 26px 72px rgba(240, 164, 58, 0.14);
}

.status-card.featured,
.playlist-card.featured,
.cellar-card.featured {
  border-color: rgba(255, 210, 138, 0.44);
  background:
    radial-gradient(circle at 84% 12%, rgba(240, 164, 58, 0.16), transparent 10rem),
    linear-gradient(145deg, rgba(255, 241, 204, 0.06), transparent 36%),
    rgba(13, 7, 5, 0.82);
}

.status-card.featured,
.status-card.aftertaste,
.playlist-card.featured {
  grid-column: span 2;
}

.status-card p,
.playlist-card p,
.cellar-card p {
  color: var(--muted);
}

.playlist-detail {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  padding-bottom: 4rem;
}

.track-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  border: 1px solid rgba(255, 210, 138, 0.16);
  border-radius: calc(var(--radius) - 0.35rem);
  padding: 0.9rem 1rem;
  background: rgba(255, 241, 204, 0.03);
}

.track-number {
  color: rgba(255, 210, 138, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.track-item h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
}

.track-item p {
  margin: 0;
  color: var(--muted);
}

.cellar-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.25fr);
  gap: 1rem;
}

.cellar-card-main,
.cellar-fields {
  position: relative;
  z-index: 1;
}

.cellar-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.cellar-fields div {
  border: 1px solid rgba(255, 210, 138, 0.13);
  border-radius: var(--radius);
  padding: 0.65rem;
  background: rgba(255, 241, 204, 0.035);
}

.cellar-fields dt {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.cellar-fields dd {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.static-note {
  border: 1px dashed rgba(255, 210, 138, 0.28);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 241, 204, 0.04);
  color: var(--muted);
}

.paper-plane-glyph > span::before,
.paper-plane-glyph > span::after {
  position: absolute;
  content: "";
}

.paper-plane-glyph > span::before {
  left: 50%;
  top: 0.65rem;
  width: 4rem;
  height: 2.25rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  background:
    linear-gradient(180deg, rgba(255, 241, 204, 0.1), rgba(240, 164, 58, 0.32)),
    radial-gradient(circle at 60% 45%, rgba(159, 47, 40, 0.22), transparent 1.1rem);
  transform: translateX(-50%);
  clip-path: none;
}

.paper-plane-glyph > span::after {
  right: 0.42rem;
  top: 0.25rem;
  width: 1.85rem;
  height: 1.35rem;
  border: 1px solid rgba(255, 241, 204, 0.74);
  background: linear-gradient(135deg, rgba(255, 241, 204, 0.32), rgba(240, 164, 58, 0.12));
  clip-path: polygon(0 52%, 100% 0, 70% 100%);
  transform: rotate(-15deg);
}

.paper-plane-glyph > span {
  filter: drop-shadow(0 0 12px rgba(255, 210, 138, 0.18));
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 210, 138, 0.72) 46.5% 48%, transparent 48.5% 100%) 50% 3.05rem / 2.5rem 1.9rem no-repeat,
    linear-gradient(90deg, transparent 0 28%, rgba(255, 210, 138, 0.72) 28.5% 72%, transparent 72.5% 100%) 50% 4.65rem / 3.5rem 0.2rem no-repeat;
}

.martini-glyph span {
  background:
    radial-gradient(circle at 70% 22%, rgba(154, 155, 93, 0.86) 0 0.25rem, transparent 0.28rem),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 241, 204, 0.46) 58.2% 59.1%, transparent 59.3% 100%);
}

.gibson-glyph span {
  background:
    radial-gradient(circle at 69% 23%, rgba(255, 241, 204, 0.78) 0 0.24rem, transparent 0.27rem),
    radial-gradient(circle at 69% 23%, rgba(240, 164, 58, 0.35) 0 0.42rem, transparent 0.45rem),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 241, 204, 0.42) 58.2% 59.1%, transparent 59.3% 100%);
}

.dirty-martini-glyph span {
  background:
    radial-gradient(circle at 69% 23%, rgba(154, 155, 93, 0.86) 0 0.25rem, transparent 0.28rem),
    radial-gradient(circle at 45% 29%, rgba(255, 241, 204, 0.18) 0 0.38rem, transparent 0.41rem),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 241, 204, 0.42) 58.2% 59.1%, transparent 59.3% 100%),
    linear-gradient(180deg, transparent 0 24%, rgba(255, 241, 204, 0.12) 24.5% 38%, transparent 38.5% 100%);
}

.vesper-glyph span {
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 241, 204, 0.42) 58.2% 59.1%, transparent 59.3% 100%),
    linear-gradient(34deg, transparent 0 48%, rgba(240, 164, 58, 0.78) 48.4% 51%, transparent 51.4% 100%) 66% 15% / 1.7rem 1.15rem no-repeat,
    radial-gradient(circle at 63% 25%, rgba(240, 164, 58, 0.22) 0 0.36rem, transparent 0.39rem);
}

.hanky-panky-glyph span {
  background:
    radial-gradient(circle at 69% 23%, rgba(154, 155, 93, 0.9) 0 0.2rem, transparent 0.23rem),
    linear-gradient(118deg, transparent 0 45%, rgba(154, 155, 93, 0.76) 45.4% 48%, transparent 48.4% 100%) 67% 15% / 1.35rem 1.2rem no-repeat,
    linear-gradient(135deg, transparent 0 58%, rgba(255, 241, 204, 0.42) 58.2% 59.1%, transparent 59.3% 100%),
    linear-gradient(180deg, transparent 0 26%, rgba(154, 155, 93, 0.14) 26.5% 39%, transparent 39.5% 100%);
}

.last-word-glyph span {
  background:
    radial-gradient(circle at 65% 26%, rgba(154, 155, 93, 0.72) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 45% 28%, rgba(255, 241, 204, 0.22) 0 0.12rem, transparent 0.14rem);
}

.rocks-glyph span {
  background:
    linear-gradient(45deg, transparent 0 44%, rgba(255, 241, 204, 0.2) 44.5% 55%, transparent 55.5% 100%) 41% 63% / 1.25rem 1.25rem no-repeat,
    linear-gradient(-35deg, transparent 0 42%, rgba(255, 241, 204, 0.16) 42.5% 55%, transparent 55.5% 100%) 58% 68% / 1.1rem 1.1rem no-repeat;
}

.coupe-glyph span {
  background:
    radial-gradient(circle at 38% 27%, rgba(255, 241, 204, 0.26) 0 0.13rem, transparent 0.15rem),
    radial-gradient(circle at 52% 22%, rgba(255, 241, 204, 0.22) 0 0.11rem, transparent 0.13rem),
    radial-gradient(circle at 65% 29%, rgba(255, 241, 204, 0.2) 0 0.1rem, transparent 0.12rem);
}

.highball-glyph span {
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(154, 155, 93, 0.72) 47.2% 49%, transparent 49.2% 100%) 62% 18% / 1.4rem 1.9rem no-repeat,
    radial-gradient(circle at 48% 52%, rgba(255, 241, 204, 0.16) 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 55% 67%, rgba(255, 241, 204, 0.12) 0 0.18rem, transparent 0.2rem);
}

.french-75-glyph > span::before,
.french-75-glyph > span::after,
.gimlet-glyph > span::before,
.gimlet-glyph > span::after,
.boulevardier-glyph > span::before,
.boulevardier-glyph > span::after,
.sazerac-glyph > span::before,
.sazerac-glyph > span::after,
.paloma-glyph > span::before,
.paloma-glyph > span::after,
.negroni-glyph > span::before,
.negroni-glyph > span::after,
.collins-glyph > span::before,
.collins-glyph > span::after {
  position: absolute;
  content: "";
}

.french-75-glyph > span::before {
  left: 50%;
  top: 0.15rem;
  width: 1.55rem;
  height: 4.25rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-top-width: 1px;
  border-radius: 0.85rem 0.85rem 0.35rem 0.35rem;
  background:
    radial-gradient(circle at 44% 18%, rgba(255, 241, 204, 0.38) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 58% 33%, rgba(255, 241, 204, 0.25) 0 0.1rem, transparent 0.12rem),
    linear-gradient(180deg, rgba(255, 241, 204, 0.12), rgba(240, 164, 58, 0.24) 48%, rgba(255, 241, 204, 0.05));
  transform: translateX(-50%);
}

.french-75-glyph > span::after {
  left: 50%;
  bottom: 0.12rem;
  width: 3.2rem;
  height: 1.25rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.82);
  border-left: 2px solid rgba(255, 210, 138, 0.82);
  transform: translateX(-50%) skewX(-18deg);
}

.french-75-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.72) 47.5% 49%, transparent 49.5% 100%) 50% 4.2rem / 2.2rem 1rem no-repeat,
    radial-gradient(circle at 39% 27%, rgba(255, 241, 204, 0.24) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 58% 21%, rgba(255, 241, 204, 0.2) 0 0.1rem, transparent 0.12rem);
}

.paloma-glyph > span::before {
  left: 50%;
  bottom: 0.3rem;
  width: 2.7rem;
  height: 4.15rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-radius: 0 0 0.55rem 0.55rem;
  background: linear-gradient(180deg, rgba(159, 47, 40, 0.18), rgba(240, 164, 58, 0.34));
  transform: translateX(-50%);
}

.paloma-glyph > span::after {
  top: 0.3rem;
  right: 0.55rem;
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid rgba(154, 155, 93, 0.86);
  border-radius: 50%;
}

.paloma-glyph > span {
  background:
    radial-gradient(circle at 43% 44%, rgba(255, 241, 204, 0.28) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 55% 52%, rgba(255, 241, 204, 0.22) 0 0.12rem, transparent 0.14rem);
}

.gimlet-glyph > span::before {
  left: 50%;
  top: 0.55rem;
  width: 3.65rem;
  height: 3.15rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-radius: 0 0 1.65rem 1.65rem;
  background:
    radial-gradient(circle at 64% 24%, rgba(154, 155, 93, 0.52) 0 0.34rem, transparent 0.37rem),
    linear-gradient(180deg, rgba(255, 241, 204, 0.08), rgba(154, 155, 93, 0.3));
  transform: translateX(-50%);
}

.gimlet-glyph > span::after {
  left: 50%;
  bottom: 0.25rem;
  width: 3.2rem;
  height: 1.35rem;
  border-bottom: 2px solid rgba(255, 210, 138, 0.82);
  border-left: 2px solid rgba(255, 210, 138, 0.82);
  transform: translateX(-50%) skewX(-16deg);
}

.gimlet-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.72) 47.5% 49%, transparent 49.5% 100%) 50% 3.7rem / 2rem 1.05rem no-repeat,
    linear-gradient(135deg, transparent 0 48%, rgba(154, 155, 93, 0.7) 48.2% 50%, transparent 50.2% 100%) 62% 18% / 1.5rem 1.5rem no-repeat;
}

.boulevardier-glyph > span::before {
  left: 50%;
  bottom: 0.55rem;
  width: 3.75rem;
  height: 3.1rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-radius: 0 0 0.62rem 0.62rem;
  background:
    radial-gradient(circle at 42% 45%, rgba(255, 241, 204, 0.23) 0 0.52rem, transparent 0.55rem),
    linear-gradient(180deg, rgba(159, 47, 40, 0.62), rgba(93, 42, 31, 0.36));
  transform: translateX(-50%);
}

.boulevardier-glyph > span::after {
  right: 0.85rem;
  top: 0.6rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(240, 164, 58, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 47, 40, 0.18), transparent 56%);
}

.boulevardier-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 241, 204, 0.18) 44.5% 58%, transparent 58.5% 100%) 46% 58% / 1.3rem 1.3rem no-repeat,
    radial-gradient(circle at 60% 59%, rgba(255, 241, 204, 0.16) 0 0.42rem, transparent 0.45rem);
}

.sazerac-glyph > span::before {
  left: 50%;
  bottom: 0.45rem;
  width: 3.45rem;
  height: 3.45rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-radius: 50% 50% 0.7rem 0.7rem;
  background:
    radial-gradient(circle at 44% 48%, rgba(255, 241, 204, 0.18) 0 0.55rem, transparent 0.58rem),
    linear-gradient(180deg, rgba(240, 164, 58, 0.34), rgba(159, 47, 40, 0.42));
  transform: translateX(-50%);
}

.sazerac-glyph > span::after {
  left: 1.1rem;
  top: 0.4rem;
  width: 3.15rem;
  height: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 241, 204, 0.56);
  box-shadow: 0 0.55rem 0 rgba(255, 210, 138, 0.3);
  transform: rotate(-18deg);
}

.sazerac-glyph > span {
  background:
    radial-gradient(circle at 65% 25%, rgba(154, 155, 93, 0.72) 0 0.2rem, transparent 0.23rem),
    radial-gradient(circle at 36% 58%, rgba(255, 241, 204, 0.18) 0 0.38rem, transparent 0.41rem);
}

.negroni-glyph > span::before {
  left: 50%;
  bottom: 0.45rem;
  width: 3.8rem;
  height: 3.1rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  border-radius: 0 0 0.7rem 0.7rem;
  background: linear-gradient(180deg, rgba(159, 47, 40, 0.56), rgba(240, 164, 58, 0.22));
  transform: translateX(-50%);
}

.negroni-glyph > span::after {
  left: 52%;
  top: 0.65rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 241, 204, 0.45);
  transform: rotate(18deg);
}

.negroni-glyph > span {
  background:
    radial-gradient(circle at 38% 58%, rgba(255, 241, 204, 0.22) 0 0.55rem, transparent 0.58rem),
    radial-gradient(circle at 62% 55%, rgba(255, 241, 204, 0.15) 0 0.46rem, transparent 0.49rem);
}

.collins-glyph > span::before {
  left: 50%;
  bottom: 0.25rem;
  width: 2.25rem;
  height: 4.7rem;
  border: 2px solid rgba(255, 210, 138, 0.82);
  background: linear-gradient(180deg, rgba(154, 155, 93, 0.22), rgba(255, 241, 204, 0.1));
  transform: translateX(-50%);
}

.collins-glyph > span::after {
  top: 0;
  left: 50%;
  width: 0.25rem;
  height: 4.8rem;
  background: rgba(255, 241, 204, 0.52);
  transform: translateX(0.6rem) rotate(11deg);
}

.collins-glyph > span {
  background:
    radial-gradient(circle at 45% 26%, rgba(255, 241, 204, 0.28) 0 0.15rem, transparent 0.17rem),
    radial-gradient(circle at 48% 38%, rgba(255, 241, 204, 0.22) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 58% 31%, rgba(255, 241, 204, 0.18) 0 0.1rem, transparent 0.12rem);
}

/* A+C drink badge pass: blueprint structure plus one concrete ingredient cue. */
.drink-glyph > span {
  filter: drop-shadow(0 0 10px rgba(255, 210, 138, 0.16));
  isolation: isolate;
}

.martini-glyph span,
.gibson-glyph span,
.dirty-martini-glyph span,
.vesper-glyph span,
.hanky-panky-glyph span,
.paper-plane-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.76) 47.5% 49%, transparent 49.5% 100%) 50% 3.35rem / 2.3rem 1.25rem no-repeat,
    linear-gradient(90deg, transparent 0 30%, rgba(255, 210, 138, 0.7) 30.5% 70%, transparent 70.5% 100%) 50% 4.7rem / 3.4rem 0.18rem no-repeat,
    radial-gradient(circle at 23% 39%, rgba(108, 169, 164, 0.28) 0 0.07rem, transparent 0.09rem),
    radial-gradient(circle at 79% 39%, rgba(108, 169, 164, 0.28) 0 0.07rem, transparent 0.09rem);
}

.martini-glyph span::before,
.gibson-glyph span::before,
.dirty-martini-glyph span::before,
.vesper-glyph span::before,
.hanky-panky-glyph span::before,
.paper-plane-glyph > span::before {
  inset: 0.3rem 0.28rem auto;
  height: 2.35rem;
  border: 2px solid rgba(255, 210, 138, 0.84);
  border-top-width: 1px;
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(255, 241, 204, 0.12) 44.5% 48%, transparent 48.5% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.03), rgba(240, 164, 58, 0.18));
  clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%);
}

.martini-glyph span::after,
.gibson-glyph span::after,
.dirty-martini-glyph span::after,
.vesper-glyph span::after,
.hanky-panky-glyph span::after,
.paper-plane-glyph > span::after {
  left: auto;
  right: 0.75rem;
  top: 0.42rem;
  bottom: auto;
  width: 1.65rem;
  height: 1rem;
  border: 0;
  transform: rotate(-14deg);
}

.martini-glyph span::after {
  background:
    radial-gradient(circle at 74% 48%, rgba(154, 155, 93, 0.95) 0 0.24rem, transparent 0.27rem),
    linear-gradient(12deg, transparent 0 47%, rgba(255, 241, 204, 0.72) 47.5% 53%, transparent 53.5% 100%);
}

.gibson-glyph span::after {
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 241, 204, 0.9) 0 0.25rem, transparent 0.28rem),
    radial-gradient(circle at 72% 48%, rgba(240, 164, 58, 0.38) 0 0.43rem, transparent 0.46rem),
    linear-gradient(12deg, transparent 0 47%, rgba(255, 241, 204, 0.72) 47.5% 53%, transparent 53.5% 100%);
}

.dirty-martini-glyph span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.76) 47.5% 49%, transparent 49.5% 100%) 50% 3.35rem / 2.3rem 1.25rem no-repeat,
    linear-gradient(90deg, transparent 0 30%, rgba(255, 210, 138, 0.7) 30.5% 70%, transparent 70.5% 100%) 50% 4.7rem / 3.4rem 0.18rem no-repeat,
    radial-gradient(circle at 45% 28%, rgba(255, 241, 204, 0.2) 0 0.4rem, transparent 0.43rem),
    linear-gradient(180deg, transparent 0 25%, rgba(255, 241, 204, 0.13) 25.5% 38%, transparent 38.5% 100%);
}

.dirty-martini-glyph span::after {
  background:
    radial-gradient(circle at 74% 48%, rgba(154, 155, 93, 0.95) 0 0.24rem, transparent 0.27rem),
    radial-gradient(circle at 74% 48%, rgba(255, 241, 204, 0.18) 0 0.46rem, transparent 0.49rem),
    linear-gradient(12deg, transparent 0 47%, rgba(255, 241, 204, 0.72) 47.5% 53%, transparent 53.5% 100%);
}

.vesper-glyph span::after {
  background:
    linear-gradient(28deg, transparent 0 34%, rgba(240, 164, 58, 0.88) 34.5% 51%, transparent 51.5% 100%),
    linear-gradient(120deg, transparent 0 46%, rgba(255, 241, 204, 0.42) 46.5% 53%, transparent 53.5% 100%);
  border-radius: 999px;
}

.hanky-panky-glyph span::after {
  background:
    radial-gradient(ellipse at 54% 48%, rgba(154, 155, 93, 0.82) 0 0.34rem, transparent 0.36rem),
    linear-gradient(120deg, transparent 0 46%, rgba(255, 241, 204, 0.54) 46.5% 53%, transparent 53.5% 100%);
  clip-path: polygon(10% 48%, 48% 4%, 94% 48%, 48% 94%);
}

.paper-plane-glyph > span::after {
  background:
    linear-gradient(135deg, rgba(255, 241, 204, 0.48), rgba(240, 164, 58, 0.14));
  clip-path: polygon(0 50%, 100% 0, 70% 100%);
}

.last-word-glyph span,
.coupe-glyph span,
.gimlet-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.76) 47.5% 49%, transparent 49.5% 100%) 50% 3.75rem / 2rem 1rem no-repeat,
    linear-gradient(90deg, transparent 0 30%, rgba(255, 210, 138, 0.7) 30.5% 70%, transparent 70.5% 100%) 50% 4.65rem / 3.1rem 0.18rem no-repeat,
    radial-gradient(circle at 34% 34%, rgba(108, 169, 164, 0.26) 0 0.07rem, transparent 0.09rem),
    radial-gradient(circle at 72% 31%, rgba(108, 169, 164, 0.26) 0 0.07rem, transparent 0.09rem);
}

.last-word-glyph span::before,
.coupe-glyph span::before,
.gimlet-glyph > span::before {
  left: 50%;
  top: 0.55rem;
  width: 3.8rem;
  height: 2.45rem;
  border: 2px solid rgba(255, 210, 138, 0.84);
  border-top-width: 1px;
  border-radius: 0 0 1.8rem 1.8rem;
  background:
    linear-gradient(180deg, transparent 0 48%, rgba(255, 241, 204, 0.13) 48.5% 52%, transparent 52.5% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.04), rgba(154, 155, 93, 0.22));
  transform: translateX(-50%);
}

.last-word-glyph span::after,
.coupe-glyph span::after,
.gimlet-glyph > span::after {
  left: auto;
  right: 0.55rem;
  top: 0.45rem;
  bottom: auto;
  width: 1.4rem;
  height: 1.15rem;
  border: 0;
  transform: rotate(-16deg);
}

.gimlet-glyph > span::after {
  background:
    radial-gradient(circle at 52% 50%, transparent 0 0.28rem, rgba(154, 155, 93, 0.86) 0.3rem 0.44rem, transparent 0.46rem),
    linear-gradient(135deg, transparent 0 47%, rgba(255, 241, 204, 0.55) 47.5% 53%, transparent 53.5% 100%);
  border-radius: 50%;
}

.last-word-glyph span::after {
  background:
    radial-gradient(circle at 70% 48%, rgba(159, 47, 40, 0.86) 0 0.2rem, transparent 0.23rem),
    radial-gradient(ellipse at 38% 48%, rgba(154, 155, 93, 0.8) 0 0.28rem, transparent 0.31rem);
}

.coupe-glyph span::after {
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 241, 204, 0.38) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 58% 35%, rgba(255, 241, 204, 0.32) 0 0.1rem, transparent 0.12rem),
    radial-gradient(circle at 72% 60%, rgba(255, 241, 204, 0.28) 0 0.09rem, transparent 0.11rem);
}

.highball-glyph span,
.collins-glyph > span,
.paloma-glyph > span {
  background:
    linear-gradient(14deg, transparent 0 47%, rgba(255, 241, 204, 0.56) 47.5% 50%, transparent 50.5% 100%) 68% 18% / 1.5rem 3.8rem no-repeat,
    radial-gradient(circle at 44% 38%, rgba(255, 241, 204, 0.28) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 57% 48%, rgba(255, 241, 204, 0.18) 0 0.13rem, transparent 0.15rem),
    radial-gradient(circle at 48% 62%, rgba(255, 241, 204, 0.2) 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 31% 72%, rgba(108, 169, 164, 0.24) 0 0.07rem, transparent 0.09rem);
}

.highball-glyph span::before,
.collins-glyph > span::before,
.paloma-glyph > span::before {
  left: 50%;
  top: 0.45rem;
  bottom: auto;
  width: 2.45rem;
  height: 4.25rem;
  border: 2px solid rgba(255, 210, 138, 0.84);
  border-top-width: 1px;
  border-radius: 0.35rem 0.35rem 0.62rem 0.62rem;
  background:
    linear-gradient(180deg, transparent 0 30%, rgba(255, 241, 204, 0.12) 30.5% 34%, transparent 34.5% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.04), rgba(240, 164, 58, 0.2));
  transform: translateX(-50%);
}

.highball-glyph span::after,
.collins-glyph > span::after,
.paloma-glyph > span::after {
  left: auto;
  right: 0.72rem;
  top: 0.52rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(154, 155, 93, 0.84);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 0.34rem, rgba(154, 155, 93, 0.48) 0.36rem 0.44rem, transparent 0.46rem);
  transform: rotate(-14deg);
}

.paloma-glyph > span::before {
  background:
    linear-gradient(180deg, transparent 0 30%, rgba(255, 241, 204, 0.13) 30.5% 34%, transparent 34.5% 100%),
    linear-gradient(180deg, rgba(159, 47, 40, 0.18), rgba(240, 164, 58, 0.34));
}

.collins-glyph > span::after {
  right: 0.82rem;
  border-color: rgba(240, 164, 58, 0.84);
}

.french-75-glyph > span {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 210, 138, 0.76) 47.5% 49%, transparent 49.5% 100%) 50% 4.2rem / 2.2rem 1rem no-repeat,
    linear-gradient(90deg, transparent 0 32%, rgba(255, 210, 138, 0.7) 32.5% 68%, transparent 68.5% 100%) 50% 4.82rem / 2.8rem 0.16rem no-repeat,
    radial-gradient(circle at 42% 24%, rgba(255, 241, 204, 0.35) 0 0.11rem, transparent 0.13rem),
    radial-gradient(circle at 57% 34%, rgba(255, 241, 204, 0.28) 0 0.09rem, transparent 0.11rem),
    radial-gradient(circle at 48% 47%, rgba(255, 241, 204, 0.2) 0 0.08rem, transparent 0.1rem);
}

.french-75-glyph > span::before {
  background:
    linear-gradient(180deg, transparent 0 36%, rgba(255, 241, 204, 0.16) 36.5% 40%, transparent 40.5% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.12), rgba(240, 164, 58, 0.24) 48%, rgba(255, 241, 204, 0.05));
}

.french-75-glyph > span::after {
  top: 0.32rem;
  right: 0.75rem;
  left: auto;
  bottom: auto;
  width: 1.25rem;
  height: 0.95rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(28deg, transparent 0 36%, rgba(240, 164, 58, 0.88) 36.5% 53%, transparent 53.5% 100%);
  transform: rotate(-18deg);
}

.rocks-glyph span,
.boulevardier-glyph > span,
.sazerac-glyph > span,
.negroni-glyph > span {
  background:
    linear-gradient(45deg, transparent 0 42%, rgba(255, 241, 204, 0.22) 42.5% 55%, transparent 55.5% 100%) 40% 56% / 1.12rem 1.12rem no-repeat,
    linear-gradient(-36deg, transparent 0 41%, rgba(255, 241, 204, 0.17) 41.5% 55%, transparent 55.5% 100%) 58% 64% / 1.08rem 1.08rem no-repeat,
    radial-gradient(circle at 29% 72%, rgba(108, 169, 164, 0.24) 0 0.07rem, transparent 0.09rem);
}

.rocks-glyph span::before,
.boulevardier-glyph > span::before,
.sazerac-glyph > span::before,
.negroni-glyph > span::before {
  left: 50%;
  top: 1.05rem;
  bottom: auto;
  width: 3.55rem;
  height: 3.15rem;
  border: 2px solid rgba(255, 210, 138, 0.84);
  border-top-width: 1px;
  border-radius: 0.28rem 0.28rem 0.75rem 0.75rem;
  background:
    linear-gradient(180deg, transparent 0 45%, rgba(255, 241, 204, 0.11) 45.5% 49%, transparent 49.5% 100%),
    linear-gradient(180deg, rgba(159, 47, 40, 0.42), rgba(240, 164, 58, 0.18));
  transform: translateX(-50%);
}

.rocks-glyph span::after,
.boulevardier-glyph > span::after,
.sazerac-glyph > span::after,
.negroni-glyph > span::after {
  left: auto;
  right: 0.7rem;
  top: 0.58rem;
  width: 1.45rem;
  height: 1.1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(28deg, transparent 0 36%, rgba(240, 164, 58, 0.86) 36.5% 53%, transparent 53.5% 100%);
  transform: rotate(-18deg);
}

.sazerac-glyph > span::after {
  left: 1.08rem;
  right: auto;
  top: 0.58rem;
  width: 3rem;
  height: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 241, 204, 0.56);
  box-shadow: 0 0.55rem 0 rgba(154, 155, 93, 0.3);
  transform: rotate(-18deg);
}

.negroni-glyph > span::after {
  background:
    radial-gradient(circle, transparent 0 0.35rem, rgba(240, 164, 58, 0.72) 0.37rem 0.48rem, transparent 0.5rem);
  border-radius: 50%;
}

/* Material drink labels: painted paper, glass highlights, and hand-drawn garnish cues. */
.drink-glyph > span {
  --label-glow: rgba(255, 210, 138, 0.28);
  --glass-top: 0.58rem;
  --glass-left: 0.68rem;
  --glass-width: 3.84rem;
  --glass-height: 2.62rem;
  --glass-shape: polygon(3% 4%, 97% 4%, 61% 88%, 52% 100%, 42% 88%);
  --glass-radius: 0.12rem;
  --liquid: rgba(236, 212, 166, 0.18);
  --liquid-deep: rgba(240, 164, 58, 0.26);
  --stem-color: rgba(255, 210, 138, 0.74);
  --stem-y: 3.23rem;
  --stem-size: 2.1rem 1.18rem;
  --base-y: 4.55rem;
  --base-size: 3.35rem 0.24rem;
  --garnish-bg:
    radial-gradient(circle at 70% 52%, rgba(154, 155, 93, 0.95) 0 0.24rem, transparent 0.27rem),
    linear-gradient(13deg, transparent 0 45%, rgba(255, 241, 204, 0.78) 45.5% 53%, transparent 53.5% 100%);
  --garnish-shape: ellipse(50% 44% at 50% 50%);
  --garnish-top: 0.42rem;
  --garnish-right: 0.58rem;
  --garnish-width: 1.65rem;
  --garnish-height: 1.08rem;
  --garnish-rotate: -15deg;
  border-radius: 1.25rem;
  background:
    linear-gradient(90deg, transparent 0 45%, var(--stem-color) 45.5% 54%, transparent 54.5% 100%) 50% var(--stem-y) / var(--stem-size) no-repeat,
    linear-gradient(90deg, transparent 0 18%, var(--stem-color) 18.5% 82%, transparent 82.5% 100%) 50% var(--base-y) / var(--base-size) no-repeat,
    radial-gradient(circle at 30% 18%, rgba(255, 241, 204, 0.28) 0 0.08rem, transparent 0.105rem),
    radial-gradient(circle at 74% 26%, rgba(255, 210, 138, 0.18) 0 0.07rem, transparent 0.095rem),
    linear-gradient(116deg, transparent 0 32%, rgba(255, 241, 204, 0.1) 32.5% 34%, transparent 34.5% 100%),
    linear-gradient(18deg, transparent 0 57%, rgba(159, 47, 40, 0.09) 57.5% 59%, transparent 59.5% 100%),
    radial-gradient(circle at 58% 48%, rgba(255, 210, 138, 0.12), transparent 2.65rem),
    rgba(22, 12, 8, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 241, 204, 0.08),
    inset 0 0 24px rgba(255, 210, 138, 0.04),
    0 0 18px var(--label-glow);
  filter: drop-shadow(0 0 13px rgba(255, 210, 138, 0.2));
  isolation: isolate;
}

.drink-glyph > span::before {
  left: var(--glass-left);
  top: var(--glass-top);
  bottom: auto;
  width: var(--glass-width);
  height: var(--glass-height);
  border: 1.5px solid rgba(255, 220, 157, 0.9);
  border-radius: var(--glass-radius);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.36) 0 9%, transparent 9.8% 31%, rgba(255, 241, 204, 0.16) 31.5% 36%, transparent 36.5% 100%),
    linear-gradient(180deg, transparent 0 38%, rgba(255, 241, 204, 0.18) 39% 43%, transparent 44% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.08), var(--liquid) 48%, var(--liquid-deep));
  box-shadow:
    inset 0 0 0 1px rgba(255, 241, 204, 0.12),
    inset 0 -0.45rem 1rem rgba(240, 164, 58, 0.12),
    0 0 0 0.06rem rgba(39, 24, 15, 0.38),
    0.09rem 0.08rem 0 rgba(255, 241, 204, 0.08);
  clip-path: var(--glass-shape);
  transform: rotate(-1.6deg);
}

.drink-glyph > span::after {
  left: auto;
  right: var(--garnish-right);
  top: var(--garnish-top);
  bottom: auto;
  width: var(--garnish-width);
  height: var(--garnish-height);
  border: 0;
  border-radius: 999px;
  background: var(--garnish-bg);
  box-shadow: 0 0 9px rgba(255, 241, 204, 0.16);
  clip-path: var(--garnish-shape);
  transform: rotate(var(--garnish-rotate));
}

.gibson-glyph span {
  --garnish-bg:
    radial-gradient(circle at 70% 52%, rgba(255, 241, 204, 0.95) 0 0.25rem, transparent 0.28rem),
    radial-gradient(circle at 70% 52%, rgba(240, 164, 58, 0.34) 0 0.46rem, transparent 0.49rem),
    linear-gradient(13deg, transparent 0 45%, rgba(255, 241, 204, 0.72) 45.5% 53%, transparent 53.5% 100%);
}

.dirty-martini-glyph span {
  --liquid: rgba(214, 220, 166, 0.22);
  --liquid-deep: rgba(154, 155, 93, 0.3);
  --garnish-bg:
    radial-gradient(circle at 70% 52%, rgba(154, 155, 93, 0.96) 0 0.25rem, transparent 0.28rem),
    radial-gradient(circle at 70% 52%, rgba(255, 241, 204, 0.2) 0 0.48rem, transparent 0.52rem),
    linear-gradient(13deg, transparent 0 45%, rgba(255, 241, 204, 0.72) 45.5% 53%, transparent 53.5% 100%);
}

.vesper-glyph span {
  --liquid: rgba(236, 212, 166, 0.2);
  --liquid-deep: rgba(108, 169, 164, 0.2);
  --garnish-bg: linear-gradient(26deg, transparent 0 26%, rgba(240, 164, 58, 0.92) 27% 55%, rgba(255, 241, 204, 0.42) 56% 64%, transparent 65% 100%);
  --garnish-shape: polygon(8% 62%, 96% 4%, 72% 92%, 38% 80%);
}

.hanky-panky-glyph span {
  --liquid: rgba(154, 155, 93, 0.16);
  --liquid-deep: rgba(159, 47, 40, 0.2);
  --garnish-bg:
    radial-gradient(ellipse at 54% 50%, rgba(154, 155, 93, 0.94) 0 0.34rem, transparent 0.37rem),
    linear-gradient(120deg, transparent 0 44%, rgba(255, 241, 204, 0.58) 45% 53%, transparent 54% 100%);
  --garnish-shape: polygon(10% 48%, 48% 4%, 94% 48%, 48% 94%);
}

.last-word-glyph span,
.coupe-glyph span,
.gimlet-glyph > span {
  --glass-top: 0.64rem;
  --glass-left: 0.7rem;
  --glass-width: 3.8rem;
  --glass-height: 2.42rem;
  --glass-shape: inset(0 0 0 0 round 0 0 1.75rem 1.75rem);
  --glass-radius: 0 0 1.8rem 1.8rem;
  --stem-y: 3.48rem;
  --base-y: 4.55rem;
}

.gimlet-glyph > span {
  --liquid: rgba(154, 155, 93, 0.2);
  --liquid-deep: rgba(108, 169, 164, 0.18);
  --garnish-bg:
    radial-gradient(circle at 50% 50%, transparent 0 0.28rem, rgba(154, 155, 93, 0.92) 0.3rem 0.45rem, transparent 0.48rem),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 241, 204, 0.62) 47% 54%, transparent 55% 100%);
}

.last-word-glyph span {
  --liquid: rgba(154, 155, 93, 0.24);
  --liquid-deep: rgba(240, 164, 58, 0.18);
  --garnish-bg:
    radial-gradient(circle at 72% 50%, rgba(159, 47, 40, 0.95) 0 0.2rem, transparent 0.23rem),
    radial-gradient(ellipse at 38% 50%, rgba(154, 155, 93, 0.88) 0 0.3rem, transparent 0.33rem);
}

.highball-glyph span,
.collins-glyph > span,
.paloma-glyph > span {
  --glass-top: 0.44rem;
  --glass-left: 1.34rem;
  --glass-width: 2.54rem;
  --glass-height: 4.18rem;
  --glass-shape: inset(0 0 0 0 round 0.34rem 0.34rem 0.65rem 0.65rem);
  --glass-radius: 0.34rem 0.34rem 0.65rem 0.65rem;
  --stem-color: transparent;
  --liquid: rgba(240, 164, 58, 0.12);
  --liquid-deep: rgba(240, 164, 58, 0.3);
  --garnish-bg:
    radial-gradient(circle, transparent 0 0.34rem, rgba(154, 155, 93, 0.88) 0.36rem 0.47rem, transparent 0.5rem),
    linear-gradient(110deg, transparent 0 45%, rgba(255, 241, 204, 0.62) 46% 52%, transparent 53% 100%);
  --garnish-top: 0.52rem;
  --garnish-right: 0.64rem;
  --garnish-width: 1.45rem;
  --garnish-height: 1.45rem;
}

.collins-glyph > span {
  --liquid: rgba(236, 212, 166, 0.12);
  --liquid-deep: rgba(240, 164, 58, 0.22);
  --garnish-bg:
    radial-gradient(circle, transparent 0 0.34rem, rgba(240, 164, 58, 0.9) 0.36rem 0.47rem, transparent 0.5rem),
    linear-gradient(110deg, transparent 0 45%, rgba(255, 241, 204, 0.62) 46% 52%, transparent 53% 100%);
}

.paloma-glyph > span {
  --liquid: rgba(159, 47, 40, 0.18);
  --liquid-deep: rgba(240, 164, 58, 0.34);
}

.french-75-glyph > span {
  --glass-top: 0.42rem;
  --glass-left: 1.54rem;
  --glass-width: 2.1rem;
  --glass-height: 4.26rem;
  --glass-shape: polygon(14% 0, 86% 0, 72% 88%, 58% 100%, 42% 100%, 28% 88%);
  --glass-radius: 1rem 1rem 0.35rem 0.35rem;
  --stem-y: 4.1rem;
  --base-y: 4.78rem;
  --base-size: 2.75rem 0.18rem;
  --liquid: rgba(255, 241, 204, 0.16);
  --liquid-deep: rgba(240, 164, 58, 0.24);
  --garnish-bg: linear-gradient(26deg, transparent 0 28%, rgba(240, 164, 58, 0.92) 29% 56%, rgba(255, 241, 204, 0.42) 57% 64%, transparent 65% 100%);
}

.rocks-glyph span,
.boulevardier-glyph > span,
.sazerac-glyph > span,
.negroni-glyph > span {
  --glass-top: 1.02rem;
  --glass-left: 0.82rem;
  --glass-width: 3.55rem;
  --glass-height: 3.18rem;
  --glass-shape: inset(0 0 0 0 round 0.28rem 0.28rem 0.75rem 0.75rem);
  --glass-radius: 0.28rem 0.28rem 0.75rem 0.75rem;
  --stem-color: transparent;
  --liquid: rgba(159, 47, 40, 0.34);
  --liquid-deep: rgba(240, 164, 58, 0.2);
  --garnish-bg: linear-gradient(26deg, transparent 0 28%, rgba(240, 164, 58, 0.92) 29% 56%, rgba(255, 241, 204, 0.42) 57% 64%, transparent 65% 100%);
}

.sazerac-glyph > span {
  --liquid: rgba(240, 164, 58, 0.16);
  --liquid-deep: rgba(159, 47, 40, 0.24);
  --garnish-bg:
    linear-gradient(90deg, rgba(255, 241, 204, 0.72), rgba(255, 210, 138, 0.36)),
    radial-gradient(circle at 78% 46%, rgba(154, 155, 93, 0.52) 0 0.22rem, transparent 0.25rem);
  --garnish-shape: inset(42% 0 42% 0 round 999px);
  --garnish-right: 1.02rem;
  --garnish-width: 3rem;
  --garnish-height: 1.1rem;
  --garnish-rotate: -17deg;
}

.negroni-glyph > span {
  --liquid: rgba(159, 47, 40, 0.38);
  --liquid-deep: rgba(240, 164, 58, 0.26);
  --garnish-bg: radial-gradient(circle, transparent 0 0.36rem, rgba(240, 164, 58, 0.9) 0.38rem 0.52rem, transparent 0.55rem);
}

.paper-plane-glyph > span {
  --liquid: rgba(236, 212, 166, 0.18);
  --liquid-deep: rgba(240, 164, 58, 0.16);
  --garnish-bg: linear-gradient(135deg, rgba(255, 241, 204, 0.64), rgba(240, 164, 58, 0.2));
  --garnish-shape: polygon(0 50%, 100% 0, 72% 100%);
}

/* Bitmap-style drink labels: standalone illustrated assets replace the old CSS line drawings. */
.drink-glyph > span {
  background: var(--drink-label) center / contain no-repeat !important;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0.65rem 1.1rem rgba(0, 0, 0, 0.34)) drop-shadow(0 0 12px rgba(255, 210, 138, 0.16));
}

.drink-glyph > span::before,
.drink-glyph > span::after {
  display: none;
  content: none;
}

.martini-glyph > span {
  --drink-label: url("drink-labels/martini.svg");
}

.gibson-glyph > span {
  --drink-label: url("drink-labels/gibson.svg");
}

.dirty-martini-glyph > span {
  --drink-label: url("drink-labels/dirty-martini.svg");
}

.vesper-glyph > span {
  --drink-label: url("drink-labels/vesper.svg");
}

.hanky-panky-glyph > span {
  --drink-label: url("drink-labels/hanky-panky.svg");
}

.gimlet-glyph > span {
  --drink-label: url("drink-labels/gimlet.svg");
}

.boulevardier-glyph > span {
  --drink-label: url("drink-labels/boulevardier.svg");
}

.sazerac-glyph > span {
  --drink-label: url("drink-labels/sazerac.svg");
}

.french-75-glyph > span {
  --drink-label: url("drink-labels/french-75.svg");
}

.collins-glyph > span {
  --drink-label: url("drink-labels/collins.svg");
}

.cat-collins-glyph > span {
  --drink-label: url("drink-labels/cat-collins.svg");
}

.last-word-glyph > span {
  --drink-label: url("drink-labels/last-word.svg");
}

.highball-glyph > span {
  --drink-label: url("drink-labels/highball.svg");
}

.paloma-glyph > span {
  --drink-label: url("drink-labels/paloma.svg");
}

.negroni-glyph > span {
  --drink-label: url("drink-labels/negroni.svg");
}

.coupe-glyph > span {
  --drink-label: url("drink-labels/coupe.svg");
}

.rocks-glyph > span {
  --drink-label: url("drink-labels/rocks.svg");
}

.paper-plane-glyph > span {
  --drink-label: url("drink-labels/paper-plane.svg");
}

.friend-profile {
  grid-template-columns: minmax(8rem, 0.48fr) minmax(0, 1.25fr);
}

.abstract-friend-mark {
  display: block;
  object-fit: initial;
  background:
    radial-gradient(circle, rgba(255, 210, 138, 0.72) 0 2px, transparent 2.8px) 0 0 / 24px 24px,
    linear-gradient(135deg, rgba(255, 241, 204, 0.09), rgba(159, 47, 40, 0.1)),
    rgba(13, 7, 5, 0.8);
}

.abstract-friend-mark::before,
.abstract-friend-mark::after {
  position: absolute;
  content: "";
}

.mark-star::before {
  inset: 21%;
  border: 2px solid rgba(255, 210, 138, 0.8);
  clip-path: polygon(50% 0, 62% 34%, 100% 35%, 69% 57%, 80% 100%, 50% 74%, 20% 100%, 31% 57%, 0 35%, 38% 34%);
}

.mark-star::after {
  inset: 37%;
  border-radius: 50%;
  background: rgba(255, 241, 204, 0.18);
}

.mark-crescent::before {
  inset: 18%;
  border: 2px solid rgba(255, 210, 138, 0.76);
  border-radius: 50%;
}

.mark-crescent::after {
  top: 18%;
  right: 22%;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  background: #0d0705;
  box-shadow: -18px 16px 0 rgba(154, 155, 93, 0.22);
}

.gallery-grid {
  grid-auto-rows: 13rem;
}

.photo-tile {
  background:
    radial-gradient(circle, rgba(255, 210, 138, 0.24) 0 1px, transparent 1.8px) 0 0 / 30px 30px,
    linear-gradient(135deg, rgba(69, 96, 104, 0.18), rgba(159, 47, 40, 0.12)),
    rgba(13, 7, 5, 0.82);
}

.photo-tile::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 210, 138, 0.16);
  clip-path: polygon(0 18%, 74% 0, 100% 72%, 28% 100%);
  content: "";
}

.photo-tile span,
.photo-tile strong {
  position: relative;
  z-index: 1;
}

.gripe-rail {
  border-style: dashed;
}

/* Art completion pass: rainy glass, private-bar glow, and finished card surfaces */
:root {
  --cyan: #6ca9a4;
  --deep-wine: #631d1c;
  --glass-line: rgba(255, 241, 204, 0.08);
}

body {
  background:
    radial-gradient(circle at 48% -10rem, rgba(255, 210, 138, 0.16), transparent 30rem),
    radial-gradient(circle at 10% 18%, rgba(111, 164, 157, 0.12), transparent 20rem),
    radial-gradient(circle at 88% 58%, rgba(99, 29, 28, 0.16), transparent 24rem),
    linear-gradient(180deg, #110705 0%, #080303 56%, #050202 100%),
    #070302;
}

body::before {
  background:
    linear-gradient(102deg, transparent 0 18%, rgba(255, 241, 204, 0.035) 18.1% 18.24%, transparent 18.36% 100%),
    linear-gradient(72deg, transparent 0 54%, rgba(108, 169, 164, 0.04) 54.1% 54.22%, transparent 54.34% 100%),
    repeating-linear-gradient(100deg, rgba(255, 241, 204, 0.032) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 241, 204, 0.028) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 18% 31%, rgba(255, 210, 138, 0.08), transparent 16rem),
    radial-gradient(circle at 82% 69%, rgba(159, 47, 40, 0.07), transparent 16rem);
  opacity: 0.95;
}

body::after {
  inset: 0.85rem;
  border-color: rgba(255, 210, 138, 0.16);
  background:
    linear-gradient(32deg, transparent 0 18%, rgba(255, 210, 138, 0.12) 18.08% 18.2%, transparent 18.32% 100%),
    linear-gradient(118deg, transparent 0 35%, rgba(108, 169, 164, 0.12) 35.08% 35.2%, transparent 35.32% 100%),
    linear-gradient(148deg, transparent 0 54%, rgba(159, 47, 40, 0.12) 54.08% 54.2%, transparent 54.32% 100%),
    radial-gradient(circle at 9% 23%, rgba(255, 210, 138, 0.24) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 29% 34%, rgba(108, 169, 164, 0.2) 0 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 83% 41%, rgba(159, 47, 40, 0.22) 0 0.16rem, transparent 0.18rem);
  box-shadow:
    inset 0 0 0 1px rgba(255, 241, 204, 0.026),
    inset 0 0 110px rgba(0, 0, 0, 0.54);
}

.site-header {
  border-bottom-color: rgba(255, 210, 138, 0.24);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.34);
}

.brand-badge,
.menu-mini-badge {
  box-shadow:
    0 0 0 1px rgba(255, 210, 138, 0.24),
    0 0 28px rgba(240, 164, 58, 0.3),
    0 0 58px rgba(159, 47, 40, 0.18);
}

.brand span {
  text-shadow: 0 0 18px rgba(255, 210, 138, 0.16);
}

.nav-links a {
  border-radius: 999px;
  padding-inline: 0.55rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 241, 204, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 138, 0.1);
}

.menu-board {
  isolation: isolate;
  border-color: rgba(255, 210, 138, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 241, 204, 0.075), rgba(255, 241, 204, 0.018) 28%, transparent 58%),
    linear-gradient(116deg, transparent 0 48%, rgba(108, 169, 164, 0.07) 48.2% 48.7%, transparent 49% 100%),
    repeating-linear-gradient(90deg, rgba(255, 210, 138, 0.042) 0 1px, transparent 1px 7rem),
    rgba(11, 6, 5, 0.82);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(255, 241, 204, 0.025),
    inset 0 1px 0 rgba(255, 241, 204, 0.11),
    inset 0 -42px 90px rgba(0, 0, 0, 0.22);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.menu-intro,
.lyric-plate,
.menu-grid {
  position: relative;
  z-index: 1;
}

.hero-atmosphere span {
  position: absolute;
  display: block;
}

.atmo-rain {
  inset: -10% -6%;
  background:
    repeating-linear-gradient(104deg, rgba(255, 241, 204, 0.07) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(104deg, transparent 0 16px, rgba(108, 169, 164, 0.075) 16px 17px, transparent 17px 54px);
  opacity: 0.32;
  transform: rotate(0.01deg);
}

.atmo-bottle {
  right: clamp(1.6rem, 5vw, 5rem);
  top: clamp(1rem, 4vw, 3rem);
  width: clamp(5rem, 12vw, 9rem);
  height: clamp(12rem, 28vw, 20rem);
  border: 1px solid rgba(255, 210, 138, 0.14);
  border-radius: 999px 999px 1.1rem 1.1rem;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(255, 241, 204, 0.08) 27% 30%, transparent 31% 100%),
    linear-gradient(180deg, rgba(255, 241, 204, 0.06), rgba(99, 29, 28, 0.1) 46%, rgba(0, 0, 0, 0.18));
  opacity: 0.48;
  filter: blur(0.1px);
}

.atmo-bottle::before {
  position: absolute;
  left: 50%;
  top: -2.9rem;
  width: 38%;
  height: 3.4rem;
  border: 1px solid rgba(255, 210, 138, 0.14);
  border-bottom: 0;
  border-radius: 0.45rem 0.45rem 0 0;
  background: rgba(255, 241, 204, 0.035);
  content: "";
  transform: translateX(-50%);
}

.atmo-window {
  left: clamp(1rem, 4vw, 3rem);
  top: 18%;
  width: min(36rem, 44vw);
  height: min(18rem, 34vw);
  border: 1px solid rgba(108, 169, 164, 0.12);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(108, 169, 164, 0.1) 18.2% 18.6%, transparent 18.8% 100%),
    linear-gradient(0deg, transparent 0 54%, rgba(255, 210, 138, 0.09) 54.2% 54.55%, transparent 54.8% 100%);
  opacity: 0.36;
  transform: skewX(-8deg);
}

.atmo-counter {
  right: -2rem;
  bottom: 5.4rem;
  left: -2rem;
  height: 4.2rem;
  background:
    linear-gradient(180deg, rgba(255, 210, 138, 0.12), rgba(99, 29, 28, 0.11) 42%, rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 241, 204, 0.06) 0 1px, transparent 1px 4rem);
  box-shadow: 0 -14px 48px rgba(255, 210, 138, 0.07);
  opacity: 0.72;
}

.menu-kicker {
  border-right-color: rgba(255, 210, 138, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 241, 204, 0.05), transparent),
    rgba(255, 241, 204, 0.018);
  padding-left: 0.75rem;
}

.menu-mini-badge {
  width: 4.1rem;
  height: 4.1rem;
}

.menu-title h1 {
  text-shadow:
    0 0 18px rgba(255, 210, 138, 0.2),
    0 0 54px rgba(159, 47, 40, 0.28);
}

.menu-title h1::before {
  position: absolute;
  inset: -0.24em -0.12em -0.18em;
  z-index: -1;
  border: 1px solid rgba(255, 210, 138, 0.12);
  border-radius: 0.28rem;
  background:
    linear-gradient(90deg, rgba(255, 241, 204, 0.038), transparent 58%),
    radial-gradient(circle at 15% 50%, rgba(240, 164, 58, 0.12), transparent 12rem);
  content: "";
}

.hero-lede {
  color: #f2d9b0;
  text-shadow: 0 0 22px rgba(255, 210, 138, 0.12);
}

.hero-note {
  border-top: 1px solid rgba(255, 210, 138, 0.14);
  padding-top: 1rem;
}

.menu-grid {
  gap: 1rem;
}

.menu-drink {
  min-height: 18.2rem;
  border-color: rgba(255, 210, 138, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 241, 204, 0.06), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(255, 210, 138, 0.12), transparent 6rem),
    rgba(12, 7, 5, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 204, 0.08),
    inset 0 -32px 52px rgba(0, 0, 0, 0.24);
}

.menu-drink::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 210, 138, 0.44), rgba(108, 169, 164, 0.24), transparent);
  content: "";
  opacity: 0.72;
}

.menu-drink:hover {
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(240, 164, 58, 0.12),
    inset 0 1px 0 rgba(255, 241, 204, 0.14);
}

.menu-drink .drink-glyph {
  filter:
    drop-shadow(0 0 16px rgba(255, 210, 138, 0.18))
    drop-shadow(0 0 36px rgba(159, 47, 40, 0.1));
}

.post-card,
.toolbar,
.guide-card,
.aside-block,
.feature-card,
.topic-card,
.friend-profile,
.photo-tile,
.gripe-rail,
.status-card,
.playlist-card,
.cellar-card {
  border-color: rgba(255, 210, 138, 0.21);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 241, 204, 0.06);
}

.post-card::after,
.guide-card::after,
.friend-profile::after,
.status-card::after,
.playlist-card::after,
.cellar-card::after {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-top: 1px solid rgba(255, 210, 138, 0.24);
  border-right: 1px solid rgba(108, 169, 164, 0.18);
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.drink-heading,
.article-header {
  border-bottom-color: rgba(255, 210, 138, 0.22);
}

.drink-heading {
  max-width: 860px;
}

.drink-portrait {
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 204, 0.06),
    0 0 34px rgba(240, 164, 58, 0.08);
}

.status-card,
.playlist-card,
.cellar-card {
  min-height: 12rem;
}

.status-card.featured,
.playlist-card.featured,
.cellar-card.featured {
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(240, 164, 58, 0.12),
    inset 0 1px 0 rgba(255, 241, 204, 0.08);
}

.cellar-fields div {
  border-color: rgba(255, 210, 138, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 241, 204, 0.045), rgba(108, 169, 164, 0.025)),
    rgba(255, 241, 204, 0.026);
}

.photo-tile {
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 241, 204, 0.03);
}

.friend-photo {
  filter: saturate(0.86) contrast(0.98);
}

@media (max-width: 980px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-intro {
    grid-template-columns: 1fr;
  }

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

  .hero-note .hero-actions {
    justify-content: flex-start;
  }

  .menu-kicker {
    min-height: auto;
    grid-template-columns: auto auto auto;
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 210, 138, 0.18);
    padding-right: 0;
    padding-bottom: 0.8rem;
  }

  .menu-kicker::before,
  .menu-kicker::after {
    display: none;
  }

  .menu-intro .hero-lede {
    grid-column: auto;
    justify-self: start;
    max-width: min(34rem, 100%);
    text-align: left;
  }

  .atmo-bottle {
    opacity: 0.26;
    right: -1.5rem;
  }

  .atmo-window {
    width: 62vw;
    opacity: 0.24;
  }
}

@media (max-width: 640px) {
  .menu-hero {
    width: min(100% - 1rem, 1240px);
    padding-top: 1.2rem;
  }

  .menu-board {
    padding: 0.85rem;
  }

  .hero-atmosphere {
    opacity: 0.72;
  }

  .atmo-bottle,
  .atmo-window {
    display: none;
  }

  .atmo-counter {
    bottom: 3.4rem;
    height: 2.4rem;
  }

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

  .menu-drink {
    min-height: 13rem;
  }

  .drink-glyph {
    width: 5.2rem;
    height: 5.2rem;
  }

  .drink-glyph > span {
    width: 5.2rem;
    height: 5.2rem;
    transform: scale(0.8);
    transform-origin: center;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }
}

@media (min-width: 1180px) {
  body {
    padding-right: 18rem;
  }

  body:has(.article-layout) {
    padding-right: 0;
  }

  .gripe-rail {
    position: fixed;
    top: 5.25rem;
    right: 1rem;
    bottom: 1rem;
    width: 16rem;
    align-content: start;
    overflow-y: auto;
  }
}

@media (max-width: 1179px) {
  .gripe-rail {
    width: min(1120px, calc(100% - 2rem));
    margin: 2rem auto;
  }
}

@media (min-width: 721px) and (max-width: 1179px) {
  .menu-intro {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
    padding-bottom: 1rem;
  }

  .menu-kicker {
    display: inline-flex;
    width: fit-content;
    min-height: 0;
    align-items: center;
    gap: 0.58rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 210, 138, 0.18);
    padding: 0 0 0.58rem;
  }

  .menu-kicker::before,
  .menu-kicker::after {
    display: none;
  }

  .menu-mini-badge {
    width: 2.8rem;
    height: 2.8rem;
  }

  .menu-title h1 {
    display: block;
    max-width: 11ch;
    font-size: clamp(4.2rem, 11vw, 6.2rem);
    line-height: 0.94;
  }

  .menu-intro .hero-lede {
    grid-column: auto;
    justify-self: start;
    width: min(34rem, 100%);
    max-width: 34rem;
    border-left-color: rgba(255, 210, 138, 0.38);
    text-align: left;
  }

  .hero-note {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
  }

  .hero-note p {
    max-width: 42rem;
  }

  .hero-note .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .hero-actions .button {
    width: auto;
    min-width: 8rem;
  }

  .lyric-plate {
    align-items: flex-start;
    margin-top: 0.35rem;
  }

  .lyric-plate p {
    max-width: 36rem;
  }
}

@media (min-width: 901px) and (max-width: 1179px) {
  .site-header {
    gap: 0.65rem;
    padding-inline: 1.1rem;
  }

  .brand {
    flex-shrink: 0;
  }

  .nav-links {
    gap: 0.28rem;
    font-size: 0.78rem;
  }

  .nav-links a {
    min-height: 2.15rem;
    padding-inline: 0.42rem;
  }

  .icon-button {
    flex: 0 0 auto;
  }

  .section,
  .page,
  .article-layout,
  .menu-hero {
    width: min(100% - 2rem, 1040px);
  }

  .menu-hero {
    padding-top: clamp(2rem, 4vw, 3.4rem);
  }

  .menu-board {
    padding: 1.25rem;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .menu-drink {
    min-height: 16.25rem;
    padding: 0.9rem;
  }

  .menu-drink-group {
    grid-column: span 2;
    padding-right: 7.4rem;
  }

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

  .menu-drink strong {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
  }

  .menu-drink p,
  .menu-variants a {
    font-size: 0.84rem;
  }

  .drink-glyph {
    width: 5.7rem;
    height: 5.7rem;
  }

  .drink-glyph > span {
    width: 5.2rem;
    height: 5.2rem;
    transform: scale(0.88);
    transform-origin: center;
  }

  .split-section {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
    gap: 1.25rem;
  }

  .guide-grid,
  .tonight-board,
  .playlist-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cellar-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 1rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem 0.7rem;
    overflow-x: hidden;
  }

  .nav-links a {
    padding: 0.2rem 0.45rem;
    white-space: nowrap;
  }

  .section,
  .page,
  .article-layout,
  .menu-hero {
    width: min(100% - 1.5rem, 1120px);
  }

  .section,
  .page {
    padding-block: 2.4rem;
  }

  .menu-board {
    padding: clamp(1rem, 5vw, 1.8rem);
  }

  .split-section,
  .article-layout,
  .note-rule,
  .guide-grid,
  .friend-grid,
  .friend-profile,
  .cocktail-signatures,
  .intro-grid,
  .feature-grid,
  .gallery-grid,
  .tonight-board,
  .playlist-grid,
  .cellar-card,
  .cellar-fields {
    grid-template-columns: 1fr;
  }

  .article-layout {
    gap: 1.4rem;
  }

  .article-layout .aside-block {
    padding: 0.95rem;
  }

  .note-rule {
    align-items: flex-start;
  }

  .article-aside {
    position: static;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .hero-note .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    font-size: 0.8rem;
  }

  .nav-links a {
    display: flex;
    min-height: 2.2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 210, 138, 0.12);
    border-radius: 999px;
    padding: 0.28rem 0.38rem;
    background: rgba(255, 241, 204, 0.028);
    text-align: center;
  }

  .icon-button {
    position: absolute;
    top: 0.72rem;
    right: 0.85rem;
  }

  .menu-hero {
    min-height: auto;
    padding-block: 0.7rem 1rem;
  }

  .menu-board {
    min-height: auto;
    border-color: rgba(255, 210, 138, 0.22);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 241, 204, 0.08);
  }

  .menu-intro {
    gap: 0.72rem;
  }

  .brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .menu-mini-badge {
    width: 3rem;
    height: 3rem;
  }

  .menu-kicker {
    gap: 0.5rem;
    border-bottom-color: rgba(255, 210, 138, 0.14);
    padding: 0 0 0.65rem;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .menu-title h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .menu-title h1::before {
    inset: -0.18em -0.08em -0.12em;
  }

  .menu-title h1::after {
    bottom: -0.16em;
  }

  .menu-intro .hero-lede {
    max-width: 100%;
    border: 1px solid rgba(255, 210, 138, 0.16);
    border-left: 0;
    border-top: 2px solid rgba(255, 210, 138, 0.34);
    padding: 0.82rem 0.9rem 0.88rem;
    background: rgba(255, 241, 204, 0.035);
    font-size: 1rem;
    line-height: 1.55;
  }

  .menu-intro .hero-lede::after {
    top: -0.28rem;
    left: 0.9rem;
    box-shadow: 1.35rem 0 0 rgba(154, 155, 93, 0.8), 2.7rem 0 0 rgba(159, 47, 40, 0.72);
  }

  .hero-note {
    gap: 0.75rem;
    border-top-color: rgba(255, 210, 138, 0.11);
    padding-top: 0.75rem;
  }

  .hero-note p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .intro-grid,
  .feature-grid,
  .cellar-list,
  .friend-showcase,
  .friend-profile {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .article-actions,
  .control-row,
  .tag-row {
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-actions .button,
  .article-actions .button,
  .control-row .button,
  .control-row .chip,
  .tag-row .button,
  .tag-row .chip {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 2.55rem;
    padding-block: 0.58rem;
  }

  .lyric-plate {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.48rem;
    margin: 0.62rem 0 0.78rem;
    padding-block: 0.68rem 0.72rem;
  }

  .lyric-plate p {
    width: 100%;
    font-size: clamp(1rem, 5.2vw, 1.32rem);
    line-height: 1.34;
    text-wrap: wrap;
  }

  .lyric-source {
    font-size: 0.68rem;
  }

  .record-icon {
    width: 1.22rem;
    height: 1.22rem;
  }

  .hero-atmosphere {
    opacity: 0.42;
  }

  .atmo-counter {
    bottom: 0;
    height: 2rem;
    opacity: 0.35;
  }

  .menu-grid {
    gap: 0.62rem;
    padding: 0.8rem 0 0.2rem;
  }

  .menu-drink {
    min-height: auto;
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: 0.22rem 0.82rem;
    align-content: center;
    align-items: center;
    padding: 0.82rem 0.88rem;
  }

  .menu-drink-group {
    grid-column: auto;
    padding-right: 0.88rem;
  }

  .menu-drink-group .drink-glyph {
    grid-row: 1 / 5;
  }

  .menu-primary-link {
    margin-top: 0.1rem;
  }

  .menu-variants {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    margin-top: 0.52rem;
  }

  .menu-drink::before,
  .menu-drink::after {
    opacity: 0.28;
  }

  .menu-drink .drink-glyph {
    position: relative;
    top: auto;
    right: auto;
    grid-row: 1 / 5;
    grid-column: 1;
    width: 4.8rem;
    height: 4.8rem;
    opacity: 0.9;
  }

  .menu-drink .drink-glyph > span {
    width: 5.2rem;
    height: 5.2rem;
    transform: scale(0.78);
    transform-origin: center;
  }

  .menu-drink strong {
    font-size: 1.22rem;
    line-height: 1.1;
  }

  .menu-drink p {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(203, 185, 158, 0.88);
    font-size: 0.88rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .drink-name {
    font-size: 0.7rem;
  }

  .split-section {
    gap: 0.8rem;
  }

  .post-list.compact {
    gap: 0.7rem;
  }

  .status-card.featured,
  .status-card.aftertaste,
  .playlist-card.featured {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .gripe-rail {
    width: min(100% - 1.5rem, 1120px);
  }

  .article-layout {
    gap: 1rem;
    padding-top: 1.3rem;
  }

  .article-aside {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .article-layout .aside-block {
    padding: 0.85rem;
  }

  .article-aside h2 {
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
  }

  .article-aside p {
    margin-bottom: 0.8rem;
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .article-aside .tag-row {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.42rem;
  }

  .article-aside .tag-row span {
    width: auto;
    padding: 0.28rem 0.56rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  body::after {
    display: none;
  }

  .site-header {
    gap: 0.55rem;
    padding: 0.68rem 0.7rem 0.75rem;
  }

  .brand {
    max-width: calc(100% - 3rem);
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.34rem;
    font-size: 0.82rem;
  }

  .nav-links a {
    min-height: 2.15rem;
    padding-inline: 0.3rem;
  }

  .section,
  .page,
  .article-layout,
  .menu-hero {
    width: min(100% - 1rem, 1120px);
  }

  .menu-board,
  .post-card,
  .guide-card,
  .feature-card,
  .friend-profile,
  .status-card,
  .playlist-card,
  .cellar-card {
    padding: 1rem;
  }

  .menu-board {
    padding: 0.82rem;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 2.75rem);
  }

  h2 {
    font-size: 1.35rem;
  }

  .menu-title h1 {
    font-size: clamp(2rem, 12.5vw, 2.7rem);
  }

  .menu-mini-badge {
    width: 2.35rem;
    height: 2.35rem;
  }

  .menu-kicker {
    font-size: 0.66rem;
  }

  .eyebrow,
  .mini-label,
  .post-date,
  .article-meta {
    font-size: 0.72rem;
  }

  .article p,
  .page-heading p,
  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-note p {
    font-size: 0.91rem;
  }

  .hero-actions .button {
    min-height: 2.45rem;
    border-radius: 0.65rem;
  }

  .menu-grid {
    gap: 0.55rem;
  }

  .menu-drink {
    grid-template-columns: 4.35rem minmax(0, 1fr);
    gap: 0.18rem 0.72rem;
    padding: 0.75rem 0.78rem;
  }

  .menu-drink .drink-glyph {
    width: 4.35rem;
    height: 4.35rem;
  }

  .menu-drink .drink-glyph > span {
    width: 5.2rem;
    height: 5.2rem;
    transform: scale(0.7);
    transform-origin: center;
  }

  .menu-drink strong {
    font-size: 1.08rem;
  }

  .menu-drink p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .section.split-section {
    padding-block: 1.4rem;
  }

  #particleCanvas,
  .bar-cursor {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .split-section,
  .article-layout,
  .guide-grid,
  .friend-grid,
  .friend-profile,
  .cocktail-signatures,
  .intro-grid,
  .feature-grid,
  .gallery-grid,
  .tonight-board,
  .playlist-grid,
  .cellar-card,
  .cellar-fields {
    grid-template-columns: 1fr;
  }

  .status-card.featured,
  .status-card.aftertaste,
  .playlist-card.featured {
    grid-column: auto;
  }

  .particle-hero {
    min-height: auto;
  }

  .article-aside {
    position: static;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .site-header {
    padding: 0.85rem 1.15rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .nav-links a {
    display: flex;
    min-height: 2.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 210, 138, 0.12);
    border-radius: 999px;
    background: rgba(255, 241, 204, 0.026);
    font-size: 0.82rem;
    text-align: center;
  }

  .section,
  .page,
  .article-layout,
  .menu-hero {
    width: min(100% - 2rem, 820px);
  }

  .menu-board {
    padding: 1rem;
  }

  .menu-title h1 {
    font-size: clamp(4rem, 12vw, 5.6rem);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .menu-drink {
    min-height: 15.25rem;
    grid-template-columns: 1fr;
    align-content: end;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 6.3rem 1rem 1rem;
  }

  .menu-drink-group {
    grid-column: 1 / -1;
    padding-right: 6.3rem;
  }

  .menu-drink .drink-glyph {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    grid-row: auto;
    grid-column: auto;
    width: 5.4rem;
    height: 5.4rem;
    opacity: 0.84;
  }

  .menu-drink-group .drink-glyph {
    grid-row: auto;
  }

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

  .menu-primary-link {
    margin-top: 0.1rem;
  }

  .drink-glyph {
    width: 5.4rem;
    height: 5.4rem;
  }

  .drink-glyph > span {
    width: 5.2rem;
    height: 5.2rem;
    transform: scale(0.82);
    transform-origin: center;
  }

  .split-section,
  .guide-grid,
  .friend-grid,
  .tonight-board,
  .playlist-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section > div:first-child {
    align-self: start;
  }

  .article-layout,
  .friend-profile,
  .cellar-card,
  .cellar-fields {
    grid-template-columns: 1fr;
  }

  .status-card.featured,
  .status-card.aftertaste,
  .playlist-card.featured,
  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .drink-portrait {
    max-width: 100%;
  }

  .gripe-rail {
    width: min(100% - 2rem, 820px);
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.35rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .menu-title h1 {
    font-size: clamp(2.35rem, 16vw, 3.4rem);
  }

  .hero-actions,
  .article-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .article-actions .button {
    width: 100%;
  }

  .article {
    max-width: 100%;
  }

  .article p {
    font-size: 1rem;
    line-height: 1.82;
  }

  .toolbar,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .bar-cursor {
    display: none;
  }

  .post-card:hover,
  .feature-card:hover,
  .friend-profile:hover,
  .status-card:hover,
  .playlist-card:hover,
  .cellar-card:hover,
  .menu-drink:hover {
    transform: none;
  }
}

/* 2026-06-27 quiet cellar pass: darker brass, paper, receipts, private map. */
:root {
  --ink: #f0dfc4;
  --muted: #b6a386;
  --paper: #0a0604;
  --panel: rgba(23, 14, 9, 0.82);
  --panel-strong: rgba(36, 22, 14, 0.92);
  --line: rgba(184, 137, 71, 0.18);
  --accent: #b88947;
  --accent-strong: #d2ad71;
  --cherry: #6f2420;
  --olive: #73764c;
  --cream: #ead7b5;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.56);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(184, 137, 71, 0.12), transparent 23rem),
    radial-gradient(circle at 86% 18%, rgba(91, 34, 28, 0.12), transparent 22rem),
    linear-gradient(180deg, #120905 0%, #0a0604 48%, #070403 100%);
}

body::before {
  background:
    radial-gradient(ellipse at 18% 82%, rgba(184, 137, 71, 0.055), transparent 18rem),
    radial-gradient(ellipse at 86% 72%, rgba(115, 118, 76, 0.04), transparent 17rem),
    linear-gradient(90deg, rgba(234, 215, 181, 0.012) 1px, transparent 1px),
    linear-gradient(rgba(234, 215, 181, 0.01) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.72;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 76%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(234, 215, 181, 0.05) 0 1px, transparent 1.4px) 0 0 / 43px 47px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 16%, rgba(0, 0, 0, 0.02) 72%, transparent);
  box-shadow: none;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

/* Keep page-level artwork on the canvas without framing the canvas itself. */
.drink-page::before {
  display: none;
  content: none;
}

.drink-portrait {
  border: 0;
  padding-left: 0;
  background: transparent;
  box-shadow: none;
}

#particleCanvas {
  opacity: 0.22;
}

.site-header {
  background: rgba(10, 6, 4, 0.84);
  backdrop-filter: blur(12px);
}

.nav-links {
  gap: clamp(0.42rem, 1.2vw, 0.9rem);
}

.nav-links a,
.button,
.chip,
.post-card,
.feature-card,
.friend-profile,
.status-card,
.playlist-card,
.cellar-card,
.photo-tile {
  transition-duration: 260ms;
}

.post-card:hover,
.feature-card:hover,
.friend-profile:hover,
.status-card:hover,
.playlist-card:hover,
.cellar-card:hover,
.menu-drink:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(184, 137, 71, 0.08),
    inset 0 1px 0 rgba(234, 215, 181, 0.05);
}

.menu-board {
  background:
    linear-gradient(180deg, rgba(234, 215, 181, 0.04), rgba(10, 6, 4, 0.22)),
    radial-gradient(circle at 78% 18%, rgba(91, 34, 28, 0.11), transparent 16rem),
    rgba(13, 8, 5, 0.78);
}

.hero-atmosphere {
  opacity: 0.34;
}

.atmo-rain {
  opacity: 0.36;
}

.atmo-bottle,
.atmo-window {
  opacity: 0.16;
}

.menu-drink::before,
.menu-drink::after,
.post-card::after,
.guide-card::after,
.friend-profile::after,
.status-card::after,
.playlist-card::after,
.cellar-card::after {
  opacity: 0.28;
}

.article-header {
  border-bottom: 1px solid rgba(184, 137, 71, 0.18);
  padding-bottom: 1.1rem;
}

.article hr {
  width: min(9rem, 42%);
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: linear-gradient(90deg, rgba(184, 137, 71, 0.62), transparent);
}

.article hr.article-break {
  display: block;
  width: clamp(5.5rem, 22%, 9rem);
  min-width: 5.5rem;
  max-width: 9rem;
  height: 1px;
  margin: 2.25rem 0;
  border: 0;
  background: linear-gradient(90deg, rgba(184, 137, 71, 0.64), rgba(184, 137, 71, 0.2) 58%, transparent);
}

.article blockquote {
  border-left-color: rgba(184, 137, 71, 0.62);
  background: rgba(234, 215, 181, 0.026);
  color: #d9bd8e;
}

.status-card {
  background:
    linear-gradient(145deg, rgba(234, 215, 181, 0.052), transparent 46%),
    radial-gradient(circle at 92% 12%, rgba(184, 137, 71, 0.09), transparent 8rem),
    rgba(17, 10, 7, 0.82);
}

.status-card::before {
  background:
    linear-gradient(90deg, rgba(184, 137, 71, 0.24) 0 0.6rem, transparent 0.6rem 1.1rem) 0 0 / 1.1rem 1px repeat-x,
    linear-gradient(rgba(234, 215, 181, 0.065), rgba(234, 215, 181, 0.02));
}

.playlist-card {
  background:
    linear-gradient(90deg, rgba(115, 118, 76, 0.1) 0 0.35rem, transparent 0.35rem),
    linear-gradient(145deg, rgba(234, 215, 181, 0.045), rgba(42, 58, 62, 0.05)),
    rgba(16, 10, 8, 0.86);
}

.playlist-card::before {
  background:
    repeating-linear-gradient(90deg, rgba(234, 215, 181, 0.08) 0 1px, transparent 1px 1.25rem),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
  opacity: 0.2;
}

.photo-tile {
  background:
    linear-gradient(180deg, transparent, rgba(8, 4, 3, 0.86)),
    repeating-linear-gradient(90deg, rgba(234, 215, 181, 0.08) 0 1px, transparent 1px 1.1rem),
    radial-gradient(circle at 30% 20%, rgba(184, 137, 71, 0.16), transparent 8rem),
    linear-gradient(135deg, rgba(30, 20, 15, 0.96), rgba(10, 6, 4, 0.96));
}

.guide-card {
  background:
    linear-gradient(145deg, rgba(234, 215, 181, 0.05), transparent 54%),
    rgba(18, 11, 8, 0.84);
}

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

.review-toolbar {
  align-items: flex-start;
}

.review-toolbar .control-row {
  justify-content: flex-end;
}

.review-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  padding: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 215, 181, 0.055), rgba(10, 6, 4, 0.06) 42%),
    radial-gradient(circle at 92% 8%, rgba(184, 137, 71, 0.11), transparent 8rem),
    rgba(18, 11, 8, 0.86);
}

.review-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 1.2rem;
}

.review-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid rgba(184, 137, 71, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(234, 215, 181, 0.09), transparent 62%),
    rgba(12, 7, 5, 0.74);
  color: #e1c184;
  box-shadow: 0 0 22px rgba(184, 137, 71, 0.12);
}

.review-stamp span {
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
}

.review-stamp small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1;
}

.review-stamp.is-unscored {
  border-style: dashed;
  color: var(--muted);
}

.review-card h2 {
  max-width: calc(100% - 4.6rem);
}

.review-oneline {
  color: #e7c891 !important;
  font-size: 1.02rem;
  font-weight: 800;
}

.review-tags,
.review-scene dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.review-tags span,
.review-scene dd span {
  border: 1px solid rgba(184, 137, 71, 0.22);
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  background: rgba(234, 215, 181, 0.035);
  color: #d8bf92;
  font-size: 0.78rem;
}

.review-scorecard {
  display: grid;
  gap: 0.85rem;
}

.review-ratings {
  display: grid;
  gap: 0.5rem;
  border: 1px solid rgba(184, 137, 71, 0.16);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: rgba(234, 215, 181, 0.028);
}

.review-rating {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) 2rem;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-meter {
  height: 0.34rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(234, 215, 181, 0.08);
}

.review-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(184, 137, 71, 0.82), rgba(115, 118, 76, 0.64));
}

.review-rating strong {
  color: #e0bf82;
  text-align: right;
}

.review-scene {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.review-scene div {
  border: 1px dashed rgba(184, 137, 71, 0.16);
  border-radius: var(--radius);
  padding: 0.55rem;
}

.review-scene dt {
  margin-bottom: 0.35rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-scene dd {
  margin: 0;
}

.visit-timeline {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  border-top: 1px dashed rgba(184, 137, 71, 0.18);
  padding-top: 0.85rem;
}

.visit-mini,
.visit-receipt {
  border: 1px dashed rgba(184, 137, 71, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(234, 215, 181, 0.045), rgba(10, 6, 4, 0.04)),
    rgba(12, 7, 5, 0.28);
}

.visit-mini {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.52rem 0.6rem;
  color: #d8bf92;
  font-size: 0.78rem;
}

.visit-mini span,
.visit-no {
  color: var(--accent-strong);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.visit-mini strong,
.visit-mini small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visit-mini small {
  color: var(--muted);
}

.visit-drinks {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-width: 0;
}

.visit-drinks span,
.drink-pill {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(184, 137, 71, 0.2);
  border-radius: 999px;
  padding: 0.16rem 0.48rem;
  background: rgba(184, 137, 71, 0.08);
  color: #e6c891;
  font-size: 0.72rem;
  line-height: 1.35;
}

.drink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.place-heading {
  max-width: 860px;
}

.place-file {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.place-summary-card,
.place-ledger,
.visit-receipt {
  position: relative;
  border: 1px solid rgba(184, 137, 71, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(184, 137, 71, 0.1), transparent 9rem),
    linear-gradient(135deg, rgba(234, 215, 181, 0.055), rgba(10, 6, 4, 0.05)),
    rgba(18, 11, 8, 0.86);
  box-shadow: var(--shadow);
}

.place-summary-card h2,
.place-ledger h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.place-summary-card .review-stamp {
  top: 1.2rem;
  right: 1.2rem;
}

.place-ledger dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.place-ledger div {
  border-bottom: 1px dashed rgba(184, 137, 71, 0.16);
  padding-bottom: 0.55rem;
}

.place-ledger dt {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.place-ledger dd {
  margin: 0.1rem 0 0;
  color: #e6c891;
}

.place-visits {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.visit-receipt {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.visit-receipt:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 137, 71, 0.42);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(184, 137, 71, 0.08);
}

.visit-no {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(184, 137, 71, 0.36);
  border-radius: 50%;
  background: rgba(12, 7, 5, 0.54);
}

.gripe-rail {
  border-color: rgba(184, 137, 71, 0.22);
  border-radius: 6px;
  padding: 0.9rem;
  background:
    linear-gradient(180deg, rgba(235, 218, 181, 0.1), rgba(117, 92, 57, 0.055)),
    rgba(21, 14, 10, 0.92);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(234, 215, 181, 0.035);
  backdrop-filter: blur(8px);
}

.gripe-header {
  border-bottom-style: dashed;
}

.gripe-header > span {
  width: auto;
  min-width: 2rem;
  min-height: 1.55rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
}

.gripe-item {
  border: 0;
  border-bottom: 1px dashed rgba(184, 137, 71, 0.16);
  border-radius: 0;
  padding: 0.58rem 0 0.7rem;
  background: transparent;
}

.gripe-topline {
  margin-bottom: 0.34rem;
  color: rgba(210, 173, 113, 0.86);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.gripe-emoji {
  font-size: 0.82rem;
}

.gripe-item p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.gripe-item time {
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
}

.gripe-detail-link {
  color: rgba(231, 190, 124, 0.95);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  letter-spacing: 0;
}

.gripe-detail-page {
  padding-right: 0;
}

.gripe-detail-shell {
  width: min(980px, calc(100% - clamp(2rem, 7vw, 6rem)));
  margin: clamp(1.6rem, 5vw, 4.2rem) auto clamp(2.2rem, 6vw, 5rem);
}

.gripe-ticket {
  position: relative;
  overflow: hidden;
  padding: clamp(1.05rem, 3vw, 2.1rem);
  border: 1px solid rgba(184, 137, 71, 0.28);
  border-radius: 6px;
  background:
    radial-gradient(circle at 84% 8%, rgba(184, 137, 71, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(237, 221, 185, 0.07), rgba(20, 13, 9, 0.24)),
    rgba(16, 11, 8, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gripe-ticket::before,
.gripe-ticket::after {
  position: absolute;
  right: 1.2rem;
  left: 1.2rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(184, 137, 71, 0.5) 0 0.5rem, transparent 0.5rem 0.9rem);
  content: "";
}

.gripe-ticket::before {
  top: 0.7rem;
}

.gripe-ticket::after {
  bottom: 0.7rem;
}

.gripe-detail-header {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  border-bottom: 1px dashed rgba(184, 137, 71, 0.22);
  padding-bottom: 1rem;
}

.gripe-detail-header h1 {
  max-width: 12em;
  margin: 0;
  color: #f5dfbc;
  font-size: clamp(2rem, 6.6vw, 4.8rem);
  line-height: 1.02;
}

.gripe-detail-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gripe-detail-stamps span,
.gripe-detail-stamps time {
  border: 1px solid rgba(184, 137, 71, 0.26);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: rgba(245, 223, 188, 0.82);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
}

.gripe-detail-lede {
  max-width: 42rem;
  margin: 1.05rem 0 1.25rem;
  color: #ead7b0;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.gripe-screenshot-frame {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(0.42rem, 1.25vw, 0.8rem);
  border: 1px solid rgba(184, 137, 71, 0.24);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(237, 221, 185, 0.04), rgba(0, 0, 0, 0)),
    #030303;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(245, 223, 188, 0.035);
}

.gripe-screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  background: #000;
}

.gripe-screenshot-frame figcaption {
  margin: 0.7rem 0 0.15rem;
  color: rgba(245, 223, 188, 0.62);
  font-size: 0.86rem;
  line-height: 1.6;
}

.gripe-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.footer-link {
  margin-left: 0.4rem;
}

.gallery-heading {
  max-width: 860px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: -0.4rem 0 1.6rem;
}

.gallery-stack {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
  padding-bottom: 4rem;
}

.gallery-section {
  border-top: 1px solid rgba(184, 137, 71, 0.2);
  padding-top: 1.1rem;
}

.gallery-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 0.9rem;
}

.gallery-section-header h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
}

.gallery-section-header p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section-header .review-tags {
  justify-content: flex-end;
  max-width: 22rem;
}

.gallery-section .gallery-grid {
  grid-auto-flow: dense;
  grid-auto-rows: clamp(11rem, 18vw, 15rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 0;
}

.gallery-section .photo-tile {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-color: rgba(184, 137, 71, 0.24);
  background: rgba(10, 6, 4, 0.72);
  color: inherit;
  isolation: isolate;
  text-decoration: none;
}

.gallery-section .photo-tile::before,
.gallery-section .photo-tile::after {
  display: none;
}

.gallery-section .photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-section .photo-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1);
}

.gallery-section .photo-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 0.12rem;
  padding: 2.5rem 0.9rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(8, 4, 3, 0.86));
}

.gallery-section .photo-tile span,
.gallery-section .photo-tile strong,
.gallery-section .photo-tile small {
  position: static;
}

.gallery-section .photo-tile strong {
  overflow: hidden;
  font-size: 1.02rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-section .photo-tile small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(234, 215, 181, 0.78);
  font-size: 0.78rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-section .photo-tile.tall {
  grid-row: span 2;
}

.gallery-section .photo-tile.wide {
  grid-column: span 2;
}

.gallery-detail {
  width: min(1180px, calc(100% - 2rem));
}

.gallery-detail-copy {
  max-width: 820px;
  margin-bottom: 1.2rem;
}

.gallery-detail-copy h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
}

.gallery-detail-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-detail-copy .review-tags {
  justify-content: flex-start;
}

.gallery-detail-frame {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  border: 1px solid rgba(184, 137, 71, 0.24);
  border-radius: var(--radius);
  padding: clamp(0.5rem, 1.5vw, 0.9rem);
  background:
    linear-gradient(180deg, rgba(234, 215, 181, 0.04), rgba(10, 6, 4, 0.1)),
    rgba(8, 4, 3, 0.74);
  box-shadow: var(--shadow);
}

.gallery-detail-frame a {
  display: grid;
  place-items: center;
  min-height: min(72vh, 44rem);
  background: #050302;
}

.gallery-detail-frame img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.gallery-detail-frame figcaption {
  color: rgba(234, 215, 181, 0.78);
  font-size: 0.92rem;
}

.gallery-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin: 1rem 0 4rem;
}

@media (max-width: 900px) {
  .gripe-detail-shell {
    width: min(760px, calc(100% - 2rem));
    margin-top: 1.5rem;
  }

  .gripe-ticket {
    padding: clamp(0.95rem, 3vw, 1.45rem);
  }

  .gripe-ticket::before,
  .gripe-ticket::after {
    right: 0.85rem;
    left: 0.85rem;
  }

  .gripe-detail-header h1 {
    max-width: 11em;
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .cellar-list,
  .review-card.featured {
    grid-template-columns: 1fr;
  }

  .gallery-section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-section-header .review-tags {
    justify-content: flex-start;
  }

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

  .gallery-detail-frame a {
    min-height: 52vh;
  }

  .review-card.featured {
    grid-column: auto;
  }

  .review-toolbar .control-row {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.42;
  }

  #particleCanvas {
    opacity: 0.16;
  }

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

  .review-card {
    padding: 1rem;
  }

  .review-stamp {
    position: static;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.7rem;
  }

  .review-card h2 {
    max-width: none;
  }

  .review-rating {
    grid-template-columns: 3.8rem minmax(0, 1fr) 1.8rem;
  }

  .gripe-rail {
    margin-top: 1.3rem;
  }

  .gripe-detail-page .site-header {
    gap: 0.8rem;
  }

  .gripe-detail-shell {
    width: min(100% - 1rem, 640px);
    margin-top: 1rem;
  }

  .gripe-detail-header {
    gap: 0.6rem;
    padding-bottom: 0.85rem;
  }

  .gripe-detail-header h1 {
    font-size: clamp(1.9rem, 12vw, 3rem);
  }

  .gripe-detail-stamps {
    gap: 0.4rem;
  }

  .gripe-detail-stamps span,
  .gripe-detail-stamps time {
    max-width: 100%;
    font-size: 0.72rem;
  }

  .gripe-detail-lede {
    margin: 0.8rem 0 0.95rem;
  }

  .gripe-screenshot-frame {
    margin-right: -0.45rem;
    margin-left: -0.45rem;
    padding: 0.35rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-tags span,
  .review-scene dd span {
    font-size: 0.74rem;
  }

  .gripe-detail-shell {
    width: min(100% - 0.75rem, 420px);
  }

  .gripe-ticket {
    padding: 0.85rem;
  }

  .gripe-ticket::before {
    top: 0.48rem;
  }

  .gripe-ticket::after {
    bottom: 0.48rem;
  }

  .gripe-detail-header h1 {
    font-size: clamp(1.75rem, 13vw, 2.6rem);
  }

  .gripe-detail-actions {
    justify-content: flex-start;
  }

  .gallery-toolbar .chip {
    flex: 1 1 calc(50% - 0.35rem);
  }

  .gallery-section .gallery-grid {
    grid-auto-rows: 13.5rem;
    grid-template-columns: 1fr;
  }

  .gallery-section .photo-tile.tall,
  .gallery-section .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-detail-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  #particleCanvas,
  .bar-cursor {
    display: none !important;
  }
}

/* 2026-09-14 paired notes: one work, two independently shareable sides. */
.paired-note-card {
  isolation: isolate;
  border-left: 4px solid rgba(111, 36, 32, 0.9);
  padding: clamp(1.15rem, 2.6vw, 1.6rem);
  background:
    linear-gradient(90deg, rgba(111, 36, 32, 0.12), transparent 34%, rgba(184, 137, 71, 0.055)),
    repeating-linear-gradient(0deg, rgba(234, 215, 181, 0.018) 0 1px, transparent 1px 13px),
    rgba(13, 8, 5, 0.9);
}

.paired-note-card::before {
  background: linear-gradient(115deg, transparent 0 49.8%, rgba(184, 137, 71, 0.13) 50%, transparent 50.2% 100%);
}

.paired-card-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
}

.paired-card-cover:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: -0.35rem;
}

.paired-card-heading,
.paired-card-sides,
.paired-card-links {
  position: relative;
  z-index: 0;
}

.paired-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.paired-card-heading > span:last-child {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-style: italic;
}

.paired-card-sides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 137, 71, 0.2);
  border-bottom: 1px solid rgba(184, 137, 71, 0.16);
}

.paired-card-side {
  min-width: 0;
  padding: clamp(1rem, 2.4vw, 1.4rem) 0;
}

.paired-card-side + .paired-card-side {
  border-left: 1px solid rgba(184, 137, 71, 0.16);
  padding-left: clamp(1rem, 2.4vw, 1.4rem);
}

.paired-card-side:first-child {
  padding-right: clamp(1rem, 2.4vw, 1.4rem);
}

.paired-card-side > span {
  color: rgba(210, 173, 113, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.post-list .paired-card-side h2,
.post-list .paired-card-side h3 {
  margin: 0.25rem 0 0.7rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: 0.015em;
}

.paired-card-side p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.paired-card-side-b {
  background: linear-gradient(90deg, transparent, rgba(234, 215, 181, 0.025));
}

.paired-card-links {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  padding-top: 0.9rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.paired-card-links a {
  border-bottom: 1px solid rgba(210, 173, 113, 0.28);
}

.paired-notes-body .gripe-rail {
  display: none;
}

@media (min-width: 1180px) {
  body.paired-notes-body {
    padding-right: 0;
  }
}

.paired-notes-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.paired-cover {
  min-height: calc(100svh - 4.5rem);
  display: grid;
  align-content: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.paired-cover-inner {
  max-width: 960px;
  margin: 0 auto;
}

.paired-cover-kicker {
  margin: 0 0 0.65rem;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.paired-cover-date {
  margin: 0 0 clamp(2rem, 7vw, 4.5rem);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.paired-cover-sides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 137, 71, 0.22);
  border-bottom: 1px solid rgba(184, 137, 71, 0.16);
}

.paired-cover-side {
  min-width: 0;
  padding: clamp(1.8rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem) 0;
}

.paired-cover-side + .paired-cover-side {
  border-left: 1px solid rgba(184, 137, 71, 0.16);
  padding-right: 0;
  padding-left: clamp(1rem, 4vw, 2.5rem);
}

.paired-side-label,
.paired-identity {
  color: rgba(210, 173, 113, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.paired-cover-side h2,
.paired-reading h2 {
  margin: 0.28rem 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.paired-cover-side h2 {
  font-size: clamp(2.5rem, 6.4vw, 5.5rem);
  line-height: 0.98;
}

.paired-cover-side p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.4vw, 1.03rem);
}

.paired-cover-subtitle {
  margin: clamp(1.6rem, 4vw, 2.5rem) 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.paired-cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.paired-reading {
  position: relative;
  scroll-margin-top: 5.5rem;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.paired-reading-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 47rem);
  margin: 0 auto;
}

.paired-reading h2 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1;
}

.paired-reading .paired-reading-meta {
  margin: 0 0 2.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.paired-reading-side-a::before {
  position: absolute;
  inset: 4rem -14vw 2rem;
  content: "";
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(111, 36, 32, 0.045) 18px, transparent 19px 37px),
    linear-gradient(90deg, transparent, rgba(111, 36, 32, 0.075) 22%, rgba(184, 137, 71, 0.02) 63%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 86%, transparent);
  pointer-events: none;
}

.paired-reading-side-a .article p {
  margin-bottom: 1.12rem;
  line-height: 1.82;
}

.paired-reading-side-a .article hr.article-break {
  margin-block: 1.8rem;
}

.pair-transition {
  min-height: 56vh;
  display: grid;
  place-items: center;
  color: rgba(210, 173, 113, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.pair-transition span {
  padding-left: 0.32em;
}

.paired-reading-side-b {
  padding-top: clamp(5rem, 12vw, 10rem);
}

.paired-reading-side-b .paired-reading-inner {
  width: min(100%, 49rem);
}

.paired-reading-side-b .article p {
  margin-bottom: 1.58rem;
  line-height: 1.9;
}

.paired-reading-side-b .article hr.article-break {
  width: clamp(4rem, 15%, 6.5rem);
  margin-block: 2.5rem;
  opacity: 0.72;
}

.paired-end-nav,
.paired-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.paired-end-nav {
  width: min(100%, 49rem);
  margin: 0 auto;
  border-top: 1px solid rgba(184, 137, 71, 0.16);
  padding: 2rem 0 clamp(4rem, 9vw, 7rem);
}

.paired-end-nav a,
.paired-article-nav a {
  color: var(--accent-strong);
  font-size: 0.88rem;
}

.paired-identity {
  margin: 0 0 0.55rem;
}

.paired-article-nav {
  margin-top: 1.6rem;
}

.paired-article-nav a {
  border-bottom: 1px solid rgba(210, 173, 113, 0.3);
}

@media (max-width: 720px) {
  .paired-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .paired-card-sides,
  .paired-cover-sides {
    grid-template-columns: 1fr;
  }

  .paired-card-side + .paired-card-side,
  .paired-cover-side + .paired-cover-side {
    border-top: 1px solid rgba(184, 137, 71, 0.16);
    border-left: 0;
    padding-left: 0;
  }

  .paired-card-side:first-child,
  .paired-cover-side {
    padding-right: 0;
  }

  .paired-card-side-b {
    background: linear-gradient(180deg, transparent, rgba(234, 215, 181, 0.025));
  }

  .paired-notes-shell {
    width: min(100% - 1.25rem, 1120px);
  }

  .paired-cover {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
  }

  .paired-cover-date {
    margin-bottom: 2rem;
  }

  .paired-cover-side h2,
  .paired-reading h2 {
    overflow-wrap: anywhere;
  }

  .paired-cover-side h2 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .paired-reading {
    padding: 3.5rem 0;
  }

  .paired-reading .paired-reading-meta {
    margin-bottom: 1.7rem;
  }

  .paired-reading-side-a::before {
    display: none;
  }

  .pair-transition {
    min-height: 34vh;
  }

  .paired-reading-side-b {
    padding-top: 4rem;
  }

  .paired-reading-side-b .article p {
    margin-bottom: 1.4rem;
  }

  .paired-reading-side-b .article hr.article-break {
    margin-block: 2.1rem;
  }

  .paired-end-nav,
  .paired-article-nav,
  .paired-cover-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .paired-cover-actions .button {
    width: 100%;
  }
}
