/* london-negroni.com - Editorial Fashion Magazine Style */

:root {
  --bg-dark: #0f0f0f;
  --bg-cream: #f5f0e8;
  --accent-red: #c41e3a;
  --accent-gold: #c9a227;
  --text-primary: #f5f0e8;
  --text-secondary: #a89f91;
  --text-dark: #1a1a1a;
  --card-bg: rgba(245, 240, 232, 0.04);
  --border: rgba(245, 240, 232, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent-red);
  color: var(--text-primary);
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-red);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(15,15,15,0.9), transparent);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1;
}

.nav-logo span {
  color: var(--accent-red);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,15,15,0.35) 0%, rgba(15,15,15,0.55) 50%, rgba(15,15,15,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "·";
  display: inline-block;
  margin: 0 0.7rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

.hero h1 {
  margin-bottom: 1.2rem;
  letter-spacing: -0.035em;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-primary);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  padding: 1.05rem 2.6rem;
  background: var(--accent-red);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.hero-cta:hover {
  background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.45);
  color: var(--text-primary);
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 1.5rem;
}

.section-title h2 {
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.5;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border-color: rgba(245, 240, 232, 0.18);
}

.card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.8rem 1.6rem 1.6rem;
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 1px;
}

.badge-verified {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  position: relative;
}

.badge-verified::before {
  content: "✓";
  margin-right: 0.35rem;
  font-size: 0.7rem;
}

.badge-price {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* Bar detail page */
.bar-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.bar-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.bar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.3) 60%, transparent 100%);
}

.bar-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.bar-hero-content h1 {
  margin-bottom: 0.5rem;
}

.bar-hero-address {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

@media (max-width: 768px) {
  .bar-grid {
    grid-template-columns: 1fr;
  }
}

.bar-details h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.bar-details dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem 1.5rem;
}

.bar-details dt {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bar-details dd {
  font-size: 0.95rem;
}

.bar-details a {
  word-break: break-all;
}

.bar-history {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.bar-history h2 {
  margin-bottom: 1rem;
}

.bar-history p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Map */
.map-container {
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container #map {
  height: 100%;
  width: 100%;
}

/* Nearby lists */
.nearby-list {
  list-style: none;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.nearby-list li:last-child {
  border-bottom: none;
}

.nearby-list a {
  color: var(--text-primary);
  font-weight: 500;
}

.nearby-list a:hover {
  color: var(--accent-gold);
}

.nearby-list .distance {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Postcode / Tube listing */
.list-header {
  padding: 8rem 2rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.list-header h1 {
  margin-bottom: 0.5rem;
}

.list-header p {
  color: var(--text-secondary);
}

/* Nearby tool */
.nearby-tool {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.nearby-tool h1 {
  margin-bottom: 1rem;
}

.nearby-tool p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.nearby-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.nearby-controls .select-bar {
  max-width: 420px;
}

.origin-bar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.origin-bar h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.origin-bar p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.origin-bar .specialties {
  font-style: italic;
}

.btn-small {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-gold);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.btn-small:hover {
  background: #b08d1f;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--accent-red);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #a01830;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--card-bg);
}

.select-bar {
  width: 100%;
  max-width: 400px;
  padding: 0.9rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  border-radius: 2px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a89f91'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.results {
  text-align: left;
}

.results h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Browse grid */
.browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.browse-item {
  display: block;
  padding: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.browse-item:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--accent-gold);
}

.browse-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.browse-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer a {
  color: var(--text-secondary);
}

.footer a:hover {
  color: var(--accent-gold);
}

/* Light mode */
html.light {
  --bg-dark: #f5f0e8;
  --bg-cream: #1a1a1a;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-dark: #f5f0e8;
  --card-bg: rgba(0, 0, 0, 0.04);
  --border: rgba(0, 0, 0, 0.12);
}

html.light body {
  background: var(--bg-dark);
  color: var(--text-primary);
}

html.light .nav {
  background: linear-gradient(to bottom, rgba(245,240,232,0.9), transparent);
}

html.light .nav.scrolled {
  background: rgba(245,240,232,0.95);
}

html.light .hero-cta,
html.light .btn {
  color: #f5f0e8;
}

html.light .leaflet-popup-content-wrapper {
  background: #fff;
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.12);
}

html.light .leaflet-popup-tip {
  background: #fff;
}

html.light .browse-item:hover {
  background: rgba(0,0,0,0.06);
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15,15,15,0.98);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

  .stats-bar {
    gap: 1.5rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .story-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-figure {
    order: -1;
  }

  .story-figure img {
    max-height: 280px;
    object-fit: cover;
  }

  .story-text {
    max-width: 100%;
  }

  .story-lede {
    font-size: 1.2rem;
  }

  .story-text p.story-lede + p::first-letter {
    font-size: 2.8rem;
  }

  .recipe-image {
    height: 250px;
    background-size: cover;
  }

  .directory-item {
    flex-direction: column;
    gap: 0.8rem;
  }

  .directory-item-meta {
    margin-top: 0;
  }

  .bar-story {
    margin: 2rem auto;
  }

  .signature-drink-inner {
    padding: 1.5rem;
  }

  .card-number {
    font-size: 2rem;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .nav {
    padding: 1rem 1rem;
  }

  .bar-hero {
    min-height: 350px;
    height: 50vh;
  }

  .bar-hero-content {
    padding: 2rem 1rem;
  }

  .bar-grid {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .bar-history {
    padding: 0 1rem 2rem;
  }

  .nearby-tool {
    padding: 2rem 1rem;
  }

  .list-header {
    padding: 7rem 1rem 2rem;
  }

  .map-container {
    height: 300px;
  }

  .browse-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .card-img {
    height: 180px;
  }
}

/* Story Section */
.story-section {
  background: linear-gradient(to bottom, var(--bg-dark), rgba(196, 30, 58, 0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .story-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
  }
  .story-text {
    max-width: 38rem;
  }
}

.story-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-red);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.story-text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.story-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text p.story-lede + p::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  padding: 0.3rem 0.7rem 0 0;
  color: var(--accent-red);
}

.story-figure {
  margin: 0;
  position: relative;
}

.story-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Editorial Cards */
.card-editorial {
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.card-hook {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Directory Section */
.directory-section {
  background: linear-gradient(to bottom, rgba(196, 30, 58, 0.03), var(--bg-dark));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.directory-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: directory;
}

.directory-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, padding-left 0.25s ease;
  counter-increment: directory;
  position: relative;
}

.directory-item::before {
  content: counter(directory, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.25rem;
}

.directory-item:hover {
  background: rgba(245, 240, 232, 0.02);
  padding-left: 1rem;
}

.directory-item-main {
  flex: 1;
}

.directory-item-main h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}

.directory-item-main p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.directory-item-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* Recipe Section */
.recipe-section {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.recipe-section h2 {
  color: var(--text-primary);
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 769px) {
  .recipe-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.recipe-content h2 {
  margin-bottom: 1rem;
}

.recipe-intro {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 32rem;
}

.recipe-card {
  background: #f5f0e8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  padding: 2.2rem 2rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  position: relative;
}

.recipe-card::before {
  content: "Recipe";
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.recipe-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.recipe-ingredients {
  list-style: none;
  margin-bottom: 1.2rem;
}

.recipe-ingredients li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

.recipe-ingredients li:last-child {
  border-bottom: none;
}

.recipe-ingredients strong {
  display: inline-block;
  min-width: 4rem;
  color: var(--accent-red);
  font-weight: 600;
}

.recipe-method {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  font-family: var(--font-serif);
}

.recipe-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
}

@media (min-width: 769px) {
  .recipe-image {
    height: 600px;
    background-size: contain;
  }
}

/* Bar Story */
.bar-story {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.bar-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.bar-story p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Signature Drink */
.signature-drink {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.signature-drink-inner {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
}

.signature-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
}

.signature-drink-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.signature-also {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* Leaflet custom */
.leaflet-popup-content-wrapper {
  background: var(--bg-dark);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.leaflet-popup-tip {
  background: var(--bg-dark);
}

.leaflet-popup-content a {
  color: var(--accent-gold);
}

@media print {
  html, body {
    background: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  *, *::before, *::after {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .nav, .footer, .nav-toggle, .theme-toggle, #map, .map-container {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 0;
    page-break-after: avoid;
    padding: 3rem 1.5rem;
  }

  .section {
    padding: 2rem 1.5rem;
    page-break-inside: avoid;
  }

  .story-grid, .recipe-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .story-figure img, .recipe-image {
    max-height: 320px;
    object-fit: cover;
  }

  .card-grid {
    grid-template-columns: 1fr !important;
  }

  a {
    color: var(--accent-gold) !important;
  }
}
