/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/libre-baskerville-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/libre-baskerville-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── TOKENS ─── */
:root {
  /* Brand — Müritz lake palette */
  --lake-deep:    #1E4B6E;
  --lake-mid:     #2E6E93;
  --lake-light:   #5A9EC0;
  --lake-pale:    #DFF0F7;
  --lake-border:  #A8D4E8;

  /* Accent — reed gold */
  --reed:         #C9922A;
  --reed-pale:    #F6EDDB;
  --reed-border:  #D4B87A;

  /* Forest — secondary dark */
  --forest:       #2B3D2F;

  /* Neutrals */
  --ink:          #1A2E3A;
  --ink-mid:      #3D5566;
  --ink-light:    #6B8499;
  --sand:         #F0EDE6;
  --sand-border:  #D8D2C8;
  --white:        #FFFFFF;

  /* Typography */
  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-sans:    'Source Sans 3', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;

  /* Layout */
  --max-width: 1080px;
  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30,75,110,0.08);
  --shadow-md: 0 4px 12px rgba(30,75,110,0.10);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--lake-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--space-md);
  background: var(--lake-deep);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0s;
}
.skip-link:focus { top: 0; }

/* Keyboard focus rings */
:focus-visible {
  outline: 2.5px solid var(--lake-light);
  outline-offset: 3px;
  border-radius: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 2.5px solid var(--lake-light);
  outline-offset: 3px;
}
.site-nav__links a:focus-visible {
  outline-color: var(--white);
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section { padding: var(--space-xl) 0; }
.section--tight { padding: var(--space-lg) 0; }

/* ─── NAVIGATION ─── */
.site-nav {
  background: var(--lake-deep);
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: var(--space-md);
}
.site-nav__brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav__brand:hover { text-decoration: none; color: var(--white); }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}
.site-nav__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.15s;
  white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--white);
  text-decoration: none;
}
.site-nav__links a.is-active {
  border-bottom: 1.5px solid rgba(255,255,255,0.6);
  padding-bottom: 1px;
}
.site-nav__lang {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-left: var(--space-sm);
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}
.site-nav__lang a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
.site-nav__lang a.is-active,
.site-nav__lang a:hover {
  color: var(--white);
}
.site-nav__lang-sep { color: rgba(255,255,255,0.25); }

/* Mobile nav toggle */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--white);
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { opacity: 0.88; text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn--primary   { background: var(--lake-deep); color: var(--white); }
.btn--secondary { background: transparent; color: var(--lake-deep); border: 1.5px solid var(--lake-deep); }
.btn--reed      { background: var(--reed); color: var(--white); }
.btn--ghost     { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }

/* ─── BADGES ─── */
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
}
.badge--spec  { background: var(--lake-pale); color: var(--lake-deep); border: 0.5px solid var(--lake-border); }
.badge--event { background: var(--reed-pale); color: #8C5E1A; border: 0.5px solid var(--reed-border); }
.badge--online{ background: #EEF5EC; color: #2B5E34; border: 0.5px solid #9ECFAB; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 0.5px solid var(--sand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card--hover {
  transition: box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.card--hover:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lake-border);
}

/* ─── SPECIALTY TILE GRID ─── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--space-sm);
}
.spec-tile {
  background: var(--white);
  border: 0.5px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.spec-tile:hover {
  border-color: var(--lake-light);
  background: var(--lake-pale);
  text-decoration: none;
}
.spec-tile__icon  { font-size: 1.2rem; line-height: 1; }
.spec-tile__name  { font-size: 0.8rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.spec-tile__count { font-size: 0.7rem; color: var(--ink-light); }
.spec-tile--more  { background: var(--sand); justify-content: center; align-items: center; text-align: center; }
.spec-tile--more .spec-tile__name { color: var(--lake-mid); font-size: 0.85rem; }

/* ─── PRACTITIONER CARD ─── */
.doc-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 0.5px solid var(--sand-border);
  background: var(--white);
  transition: background 0.15s;
}
.doc-card:hover { background: #F8FAFB; }
.doc-card:last-child { border-bottom: none; }
.doc-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lake-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lake-deep);
  flex-shrink: 0;
  overflow: hidden;
}
.doc-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.doc-card__name  { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.doc-card__addr  { font-size: 0.8rem; color: var(--ink-light); margin-bottom: 2px; }
.doc-card__phone { font-size: 0.8rem; color: var(--lake-mid); margin-bottom: var(--space-sm); }
.doc-card__tags  { display: flex; flex-wrap: wrap; gap: 4px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: 0.875rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.site-footer__desc { line-height: 1.6; }
.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}
.site-footer__links { list-style: none; }
.site-footer__links li { margin-bottom: 6px; }
.site-footer__links a { color: rgba(255,255,255,0.65); }
.site-footer__links a:hover { color: var(--white); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */

/* Utility: 2-column form grid — collapses to 1 column on narrow screens */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 580px) {
  .grid-2col { grid-template-columns: 1fr; }
}

/* Tablet (769px–1024px): footer 2×2 grid */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* Blur overlay behind mobile nav — lives in footer, direct body child */
.nav-blur-overlay {
  display: none;
  position: fixed;
  inset: 56px 0 0 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.20);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 500;
}
.nav-blur-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-blur-overlay { display: block; }
  @keyframes navItemIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .site-nav__links {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.42s cubic-bezier(0.16,1,0.3,1),
                transform 0.42s cubic-bezier(0.16,1,0.3,1),
                visibility 0s linear 0.42s;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--lake-deep);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-md);
    gap: 0;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    z-index: 1099;
  }
  .site-nav__links li {
    opacity: 0;
  }
  .site-nav__links li a {
    display: block;
    padding: .75rem var(--space-sm);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .site-nav__links li:last-child a { border-bottom: none; }
  .site-nav__links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.42s cubic-bezier(0.16,1,0.3,1),
                transform 0.42s cubic-bezier(0.16,1,0.3,1),
                visibility 0s linear 0s;
  }
  .site-nav__links.is-open li {
    animation: navItemIn 0.38s cubic-bezier(0.16,1,0.3,1)
               calc(var(--i, 0) * 70ms + 80ms) both;
  }
  .site-nav__toggle { display: block; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .ev-card-grid { grid-template-columns: 1fr; }
}

/* Über-uns layout */
.ueber-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 640px) {
  .ueber-side-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-cta-grid { grid-template-columns: 1fr !important; }
  .ueber-cta-grid > div:last-child { align-items: flex-start !important; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-card { padding: var(--space-md); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Very small phones (≤360px) */
@media (max-width: 360px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CARD HOVER UTILITY ─── */
.hover-card {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s cubic-bezier(.34,1.56,.64,1);
}
.hover-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(30,75,110,0.14);
}
.hover-card--dark:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

/* ─── PLACEHOLDER COLOR ─── */
/* inputs on dark backgrounds (hero/directory search) */
.ph-light::placeholder { color: rgba(255,255,255,.65); }

/* ─── TILT CARD RESET TRANSITION ─── */
[data-tilt] { transition: transform 0.45s cubic-bezier(.16,1,.3,1), box-shadow 0.2s; }
[data-tilt].is-tilting { transition: box-shadow 0.2s; }

/* ─── OPEN BADGE PULSE ─── */
@keyframes open-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(1.6); }
}

/* ─── PAGE LOAD BLUR ─── */
@keyframes page-load-blur {
  from { opacity: 0; filter: blur(12px); }
  to   { opacity: 1; filter: blur(0); }
}
@keyframes page-load-blur-strong {
  from { opacity: 0; filter: blur(32px) saturate(0.4); }
  to   { opacity: 1; filter: blur(0)    saturate(1); }
}
body {
  animation: page-load-blur 0.55s cubic-bezier(.16,1,.3,1) both;
}
body.page-verzeichnis {
  animation: page-load-blur-strong 0.8s cubic-bezier(.16,1,.3,1) both;
}
@media (prefers-reduced-motion: reduce) {
  body, body.page-verzeichnis { animation: none; }
}

/* ─── BLUR REVEAL ─── */
@keyframes blur-reveal {
  from {
    filter: blur(16px);
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blob-drift-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-25px) scale(1.12); }
  66%     { transform: translate(-20px,20px) scale(0.94); }
}
@keyframes blob-drift-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-30px,30px) scale(1.08); }
  70%     { transform: translate(25px,-15px) scale(1.04); }
}
@keyframes blob-drift-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,30px) scale(0.92); }
}

[data-reveal] {
  animation: blur-reveal var(--reveal-duration, 0.9s)
             cubic-bezier(.16,1,.3,1)
             var(--reveal-delay, 0s)
             both;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { animation: none; }
}

/* ─── HERO BLOB BACKGROUND ─── */
.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
}
.hero-blob--1 {
  top: -30%; left: -10%;
  width: 65%; height: 130%;
  background: radial-gradient(circle, rgba(90,158,192,0.32) 0%, transparent 70%);
  animation: blob-drift-1 10s ease-in-out infinite;
}
.hero-blob--2 {
  top: 10%; right: -20%;
  width: 60%; height: 110%;
  background: radial-gradient(circle, rgba(30,75,110,0.38) 0%, transparent 70%);
  animation: blob-drift-2 13s ease-in-out infinite;
}
.hero-blob--3 {
  bottom: -25%; left: 25%;
  width: 55%; height: 90%;
  background: radial-gradient(circle, rgba(201,146,42,0.14) 0%, transparent 70%);
  animation: blob-drift-3 11s ease-in-out infinite;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.gallery-tile {
  border-radius: var(--radius-md);
  border: 0.5px solid var(--sand-border);
  padding: var(--space-md) var(--space-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s cubic-bezier(.34,1.56,.64,1),
              border-color .2s;
}
.gallery-tile:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(30,75,110,0.16);
  border-color: var(--lake-border);
  text-decoration: none;
}
.gallery-tile--light { background: var(--white); color: var(--ink); }
.gallery-tile--pale  { background: var(--lake-pale); border-color: var(--lake-border); color: var(--lake-deep); }
.gallery-tile--dark  { background: var(--ink); border-color: transparent; color: var(--white); }
.gallery-tile--dark .gallery-tile__count { color: rgba(255,255,255,0.45); }
.gallery-tile--pale .gallery-tile__count { color: var(--lake-mid); }
.gallery-tile__icon {
  font-size: 1.3rem;
  line-height: 1;
}
.gallery-tile__name  { font-size: 0.8rem; font-weight: 700; line-height: 1.3; }
.gallery-tile__count { font-size: 0.7rem; color: var(--ink-light); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── EVENT CARDS (atmospheric dark) ─── */
.ev-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
}
.ev-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.ev-card:hover {
  text-decoration: none;
}
.ev-card--primary   { background: linear-gradient(135deg, #0B1F30 0%, #1A3D5C 100%); }
.ev-card--secondary { background: linear-gradient(135deg, #083840 0%, #0E5A68 100%); }
.ev-card--reed      { background: linear-gradient(135deg, #1A1028 0%, #352050 100%); }
.ev-card__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ev-card__day {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: var(--font-serif);
  margin-bottom: 2px;
}
.ev-card__month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.9rem;
}
.ev-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(201,146,42,0.22);
  color: #E8B86D;
  border: 0.5px solid rgba(201,146,42,0.35);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}
.ev-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-serif);
  line-height: 1.35;
  margin-bottom: 0.4rem;
  flex: 1;
}
.ev-card__meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  margin: 0;
}
.ev-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── SPECIALTY TILES ─── */
.spec-btn {
  background: var(--white);
  border: .5px solid var(--sand-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s cubic-bezier(.34,1.56,.64,1),
              border-color .2s;
}
.spec-btn:hover,
.spec-btn:focus-visible {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(30,75,110,0.16);
  border-color: var(--lake-border);
}
.spec-btn__inner {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
}
.spec-btn__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: var(--lake-mid);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.spec-btn:hover .spec-btn__icon,
.spec-btn:focus-visible .spec-btn__icon {
  transform: translateY(-3px) scale(1.25);
}
.spec-btn__name {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spec-btn__count {
  display: block;
  font-size: .68rem;
  color: var(--ink-light);
  margin-top: 1px;
}

/* Leaflet map — hide attribution bar */
.leaflet-control-attribution { display: none !important; }
.leaflet-top,
.leaflet-bottom { z-index: 500 !important; }
