:root {
  --bg: #efe6d6;
  --paper: #faf6ee;
  --ink: #1b1712;
  --muted: #6d6458;
  --line: #e4d8c6;
  --panel: #fffdf8;
  --accent: #1b5c43;
  --accent-ink: #ffffff;
  --warm: #b85a24;
  --gold: #c4a35a;
  --text: var(--ink);
  --font: var(--sans);
  --cyan: var(--accent);
  --hot: var(--warm);
  --radius: 18px;
  --serif: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 18px 50px #1b171214;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1100px 520px at 8% -8%, #e8d4b4 0%, transparent 58%),
    radial-gradient(900px 420px at 100% 0%, #cfe0d4 0%, transparent 50%),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
img { max-width: 100%; height: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.main-wrap { padding: 8px 20px 72px; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.header-bar {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  grid-template-areas: "brand search nav";
  gap: 12px 16px;
  align-items: center;
  min-height: 64px;
  padding: 10px 0;
}
.brand { grid-area: brand; }
.search { grid-area: search; }
.nav-desk { grid-area: nav; justify-self: end; }
.nav-toggle { grid-area: toggle; }
@media (max-width: 860px) {
  .header-bar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "search search";
  }
  .nav-desk { display: none; }
  .search { max-width: none; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .nav-mob { display: none !important; }
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-weight: 600;
  font-family: var(--serif); letter-spacing: -0.03em;
  font-size: 1.22rem; white-space: nowrap;
}
.brand img { width: 32px; height: 32px; }
.search {
  display: flex; gap: 0; width: 100%; max-width: 520px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  background: var(--panel); box-shadow: var(--shadow);
}
.search input {
  flex: 1; border: 0; background: transparent; padding: 12px 16px;
  font: inherit; color: var(--ink); min-width: 0;
}
.search input:focus { outline: none; }
.search button {
  border: 0; background: var(--accent); color: #fff;
  font-weight: 700; padding: 0 16px; cursor: pointer; white-space: nowrap;
}
.nav-desk, .nav-mob {
  display: flex; align-items: center; gap: 4px;
}
.nav-desk a, .nav-mob a, .lang {
  text-decoration: none; color: var(--muted); font-weight: 650;
  font-size: 0.92rem; padding: 8px 10px; border-radius: 999px;
}
.nav-desk a:hover, .nav-mob a:hover, .lang:hover { color: var(--ink); background: #eee9df; }
.lang { color: var(--accent) !important; }
.flags { position: relative; }
.flags summary {
  list-style: none; cursor: pointer; padding: 6px 8px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel); line-height: 1;
}
.flags summary::-webkit-details-marker { display: none; }
.flags summary:hover { background: #eee9df; }
.flag { font-size: 1.15rem; line-height: 1; }
.flag-menu {
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 90;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 8px; min-width: 220px; max-height: 360px;
  overflow: auto; display: grid; gap: 2px;
}
.flag-opt {
  display: flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--ink) !important; padding: 8px 10px; border-radius: 10px; font-weight: 650;
}
.flag-opt:hover, .flag-opt[aria-current="page"] { background: #e7f4ee; }
.france-map, .world-map {
  height: 520px; border-radius: 16px; border: 1px solid var(--line);
  margin: 18px 0 28px; background: #d9e3dc;
}
.nav-toggle {
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
  border-radius: 999px; padding: 8px 12px; font-weight: 700; cursor: pointer;
}
.nav-mob {
  flex-direction: column; align-items: stretch; padding: 0 18px 14px;
  border-top: 1px solid var(--line);
}
.nav-mob[hidden] { display: none !important; }

h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 560; letter-spacing: -0.045em; line-height: 1.08;
  margin: 10px 0 14px;
}
h2 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 560;
  letter-spacing: -0.03em; margin: 2.2rem 0 12px;
}
.muted, .lede, .lead, .meta { color: var(--muted); line-height: 1.55; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  color: var(--muted); font-size: 0.88rem; padding: 18px 0 4px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

.btn, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 999px; font-weight: 700; text-decoration: none;
  font-size: 0.95rem;
}
.btn { background: var(--accent); color: var(--accent-ink); }
.btn:hover { filter: brightness(1.06); text-decoration: none; color: #fff; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--panel); }
.btn-ghost:hover { border-color: var(--ink); text-decoration: none; color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.card, .casino-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 18px 16px; box-shadow: var(--shadow);
}
.casino-card { transition: transform .16s ease, box-shadow .16s ease; }
.casino-card:hover { transform: translateY(-2px); box-shadow: 0 22px 44px #1b171218; }
.casino-card h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.03em; font-size: 1.22rem; margin: 0 0 6px; }
.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  background: #e7f4ee; color: var(--accent); padding: 3px 9px; border-radius: 999px;
}
.dist { color: var(--warm); font-weight: 800; }
.row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.chip-row, .pager { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip, .chip-row a, .pager a {
  border: 1px solid var(--line); background: var(--panel); padding: 8px 12px;
  border-radius: 999px; color: var(--ink); font-size: 0.9rem; text-decoration: none;
}
.chip:hover, .chip-row a:hover { border-color: var(--accent); color: var(--accent); }
.chip span { color: var(--muted); font-size: 0.82rem; }
.dir-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 40px 0 8px;
}
.dir-stats div {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px;
}
.dir-stats strong {
  display: block; font-family: var(--serif); font-size: 1.85rem; font-weight: 560;
  color: var(--accent); letter-spacing: -0.04em;
}
.dir-stats span { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 700px) { .dir-stats { grid-template-columns: 1fr; } }

.note {
  background: #fff7ea; border: 1px solid #ead9b8; border-radius: 12px;
  padding: 12px 14px; color: var(--muted); line-height: 1.5;
}
.faq details {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px;
  margin: 8px 0; background: var(--panel);
}
.faq summary { cursor: pointer; font-weight: 650; }
.online {
  margin-top: 28px; padding: 20px; border-radius: 16px;
  background: #e7f4ee; border: 1px solid #cfe6db;
}
.city-list { columns: 2; gap: 24px; padding-left: 1.2rem; }
@media (max-width: 700px) { .city-list { columns: 1; } }
.site-footer, .foot {
  border-top: 1px solid var(--line); margin-top: 64px;
  padding: 28px 0 48px; color: var(--muted); font-size: 0.9rem;
}
.site-footer strong { font-family: var(--serif); color: var(--ink); font-weight: 560; }
.foot { display: flex; gap: 16px; padding: 20px 18px 40px; }
.fine { color: var(--muted); font-size: 0.85rem; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem;
  color: var(--accent); font-weight: 700; margin: 0 0 8px;
}
.facts { display: grid; gap: 12px; margin: 28px 0 0; grid-template-columns: 1fr 1fr; }
.facts dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.facts dd { margin: 4px 0 0; }
.venue-hero-photo {
  margin: 8px 0 24px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: #ece7dc;
}
.venue-hero-photo img { display: block; width: 100%; height: min(48vh, 460px); object-fit: cover; }
.venue-hero-photo figcaption { padding: 8px 14px 12px; font-size: 0.78rem; color: var(--muted); }
.venue-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 960px) {
  .venue-grid { grid-template-columns: 1.05fr 0.95fr; }
  .venue-map-col { position: sticky; top: 84px; }
}
.hero-search { padding: 48px 0 12px; }
.hero-search .muted { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.74rem; font-weight: 700; color: var(--accent); }
.hero-search h1 { max-width: 13ch; }
.hero-search .lede { font-size: 1.12rem; max-width: 40ch; }
.hero-search .search { max-width: 640px; margin: 26px 0 0; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge-link { text-decoration: none; }
.map-note { margin: 10px 0 0; font-size: 0.88rem; }
.sib, .list { list-style: none; padding: 0; display: grid; gap: 0; }
.sib li, .list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.sib span, .list span { color: var(--muted); }
.group-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.group-grid a {
  display: block; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow);
}
.group-grid a:hover { border-color: var(--accent); }
.group-grid strong { display: block; }
.group-grid span { color: var(--muted); font-size: 0.88rem; }

.result-list { list-style: none; padding: 0; }
.result-list li {
  border-bottom: 1px solid var(--line); padding: 12px 0;
  display: flex; justify-content: space-between; gap: 12px;
}
.result-list span { color: var(--muted); }

.vmap {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line); min-height: 280px; background: #d9e3dc;
  height: 100%;
}
.vmap-canvas { width: 100%; height: 100%; min-height: 280px; }
.vmap-bar { position: absolute; top: 12px; right: 12px; z-index: 500; display: flex; gap: 6px; }
.vmap-btn {
  border: 1px solid var(--line); background: #fffcf7ee; color: var(--ink);
  border-radius: 999px; padding: 6px 12px; font: 650 12px var(--sans); cursor: pointer;
}
.vmap-btn.is-on { background: var(--accent); color: #fff; border-color: transparent; }
.france-map {
  height: 480px; border-radius: 20px; border: 1px solid var(--line);
  margin: 18px 0 28px; background: #d9e3dc;
}
.leaflet-container { font-family: var(--sans); }
.ask-pin { background: none !important; border: 0 !important; }
.ask-pin i {
  display: block; width: 22px; height: 22px;
  background: var(--accent); border: 2px solid #fff;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 8px 16px #1b5c4360;
}

.place { margin: 0; }
.place-media {
  display: grid; gap: 10px; margin: 12px 0 8px;
  grid-template-columns: 1fr;
  min-height: 280px;
}
.place-photo, .place-map { min-height: 280px; border-radius: 20px; overflow: hidden; }
.place-photo {
  margin: 0; position: relative; background: #d8c9b0;
  border: 1px solid var(--line);
}
.place-photo img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.place-photo figcaption {
  position: absolute; left: 12px; bottom: 10px; margin: 0;
  font-size: 0.72rem; color: #fff; text-shadow: 0 1px 8px #0009;
}
.place-photo figcaption a { color: #fff; }
.place-media:not(.has-photo) { height: min(46vh, 400px); }
.place-media:not(.has-photo) .place-map,
.place-media:not(.has-photo) .vmap,
.place-media:not(.has-photo) .vmap-canvas { height: 100%; min-height: 0; }
@media (min-width: 860px) {
  .place-media.has-photo {
    grid-template-columns: 1.2fr 0.8fr;
    height: min(52vh, 460px);
  }
  .place-media.has-photo .place-photo,
  .place-media.has-photo .place-map,
  .place-media.has-photo .vmap,
  .place-media.has-photo .vmap-canvas,
  .place-media.has-photo .place-photo img {
    height: 100%;
    min-height: 0;
  }
}
.place-id { padding: 18px 2px 0; }
.place-cat {
  margin: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.place-id h1 { margin: 6px 0 8px; }
.place-addr { margin: 0 0 10px; color: var(--muted); font-size: 1.05rem; }
.place-reviews {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-weight: 650;
}
.place-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.place-reviews:hover { color: var(--accent); }
.place-acts {
  display: flex; gap: 6px; margin: 22px 0 8px; max-width: 520px;
}
.place-act {
  flex: 1; min-width: 70px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink); font-weight: 650; font-size: 0.82rem;
}
.place-act-ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: #e7f1ea; color: var(--accent);
}
.place-act-ico svg { width: 22px; height: 22px; }
.place-act.is-go .place-act-ico { background: var(--accent); color: #fff; }
.place-act:hover .place-act-ico { filter: brightness(0.96); }
.place-maps-choice { margin: 4px 0 0; font-size: 0.82rem; color: var(--muted); }
.place-maps-choice a { margin: 0 4px; }
.place-facts {
  list-style: none; padding: 8px 0 0; margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.place-facts > li {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.place-facts strong {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding-top: 3px;
}
.place-facts p, .place-hours { margin: 0; }
.place-hours { list-style: none; padding: 0; }
.place-fine { color: var(--muted); font-size: 0.86rem; margin: 18px 0 0; }
.place-more { margin-top: 48px; }
.place-dock {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.place-dock a {
  flex: 1; text-align: center; text-decoration: none; font-weight: 700;
  color: var(--ink); background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 8px;
}
.place-dock a:first-child { background: var(--accent); color: #fff; border-color: transparent; }
@media (max-width: 860px) {
  .place-dock { display: flex; }
  .main-wrap:has(.place-dock) { padding-bottom: 96px; }
  .place-facts > li { grid-template-columns: 1fr; gap: 4px; }
}
