@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,600..800&family=Cormorant+Garamond:wght@600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap");

:root {
  --black: #211714;
  --white: #fffdf8;
  --cream: #f6efdf;
  --coral: #cfb376;
  --coral-dark: #c3a055;
  --pink: #e9dcbd;
  --sun: #f1cf6b;
  --mint: #91aa91;
  --gray-100: #eee4d1;
  --gray-300: #a48779;
  --display: "Bricolage Grotesque", sans-serif;
  --card-serif: "Cormorant Garamond", serif;
  --body: "DM Sans", sans-serif;
}

[hidden] {
  display: none !important;
}

body {
  background: var(--cream);
  color: var(--black);
}

.site-header {
  border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  background: var(--coral-dark);
}

.header-location {
  color: var(--cream);
}

.brand {
  width: 62px;
  height: 62px;
}

.brand img,
.footer-brand img {
  filter: brightness(0) invert(1);
}

.header-cta,
.button,
.filter-button {
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow: none;
  font-weight: 700;
  line-height: 1;
}

.header-cta {
  color: var(--cream);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--black);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
}

.menu-overlay {
  background: var(--coral-dark);
  color: var(--cream);
}

.menu-nav a {
  border-bottom: 1px solid rgba(255, 253, 248, 0.55);
  padding: clamp(12px, 1.6vh, 22px) 0;
  font-size: clamp(38px, 5.4vw, 80px);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--sun);
}

.hero-map {
  min-height: 720px;
  border-bottom: 1px solid var(--black);
  background: var(--pink);
}

#map {
  background: #ece8df;
}

.leaflet-tile-pane {
  filter: sepia(0.08) saturate(0.55) contrast(0.94) brightness(1.03);
}

.leaflet-control-zoom {
  border: 1px solid rgba(33, 23, 20, 0.65) !important;
  box-shadow: 0 8px 24px rgba(33, 23, 20, 0.16) !important;
}

.map-marker {
  border: 2px solid var(--white);
  background: var(--coral-dark);
  box-shadow: 0 0 0 2px var(--coral-dark), 0 5px 14px rgba(33, 23, 20, 0.3);
}

.map-marker.is-active {
  transform: scale(1.18);
}

.restaurant-popup .leaflet-popup-content-wrapper {
  overflow: hidden;
  border: 1px solid rgba(33, 23, 20, 0.22);
  border-radius: 16px;
  background: var(--cream);
  color: var(--black);
  box-shadow: 0 18px 48px rgba(33, 23, 20, 0.24);
}

.restaurant-popup .leaflet-popup-content {
  width: min(270px, calc(100vw - 84px)) !important;
  margin: 0;
}

.restaurant-popup .leaflet-popup-tip {
  border: 0;
  background: var(--cream);
  box-shadow: 3px 3px 8px rgba(33, 23, 20, 0.12);
}

.restaurant-popup a.leaflet-popup-close-button {
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(33, 23, 20, 0.16);
  border-radius: 50%;
  padding: 2px 0 0;
  background: rgba(255, 253, 248, 0.72);
  color: var(--black) !important;
  font-size: 20px;
  line-height: 25px;
}

.restaurant-popup a.leaflet-popup-close-button:hover,
.restaurant-popup a.leaflet-popup-close-button:focus-visible {
  background: var(--black);
  color: var(--cream) !important;
}

.restaurant-popup .map-popup {
  width: auto;
  padding: 22px;
  font-family: var(--body);
}

.restaurant-popup .map-popup-eyebrow {
  margin: 0 38px 15px 0;
  color: rgba(33, 23, 20, 0.56);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.restaurant-popup .map-popup strong {
  display: block;
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.restaurant-popup .map-popup-address {
  display: block;
  margin-top: 12px;
  color: rgba(33, 23, 20, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.restaurant-popup .map-popup-button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 11px 16px 9px;
  background: var(--coral-dark);
  color: var(--black);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.restaurant-popup .map-popup-button:hover,
.restaurant-popup .map-popup-button:focus-visible {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-1px);
}

.landmark-div-icon {
  border: 0;
  background: transparent;
}

.landmark-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--black);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.landmark-marker--left {
  transform: translate(-50%, -50%);
}

.landmark-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 2px;
  object-fit: contain;
  opacity: 0.76;
  filter:
    drop-shadow(-1px -1px 0 var(--white))
    drop-shadow(1px -1px 0 var(--white))
    drop-shadow(-1px 1px 0 var(--white))
    drop-shadow(1px 1px 0 var(--white))
    drop-shadow(0 3px 4px rgba(33, 23, 20, 0.2));
}

.landmark-symbol--prominent {
  width: 64px;
  height: 76px;
  flex-basis: 76px;
}

.landmark-label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-align: center;
  text-shadow:
    -2px -2px 0 rgba(255, 253, 248, 0.95),
    2px -2px 0 rgba(255, 253, 248, 0.95),
    -2px 2px 0 rgba(255, 253, 248, 0.95),
    2px 2px 0 rgba(255, 253, 248, 0.95),
    0 2px 7px rgba(255, 253, 248, 0.95);
}

.map-intro {
  max-width: 590px;
  border: 1px solid rgba(33, 23, 20, 0.18);
  border-radius: 4px;
  padding: clamp(36px, 4vw, 62px);
  background: rgba(246, 239, 223, 0.96);
  color: var(--black);
  box-shadow: 0 24px 70px rgba(33, 23, 20, 0.18);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.map-intro::after {
  display: none;
}

.map-intro h1 {
  color: var(--coral-dark);
  font-size: clamp(72px, 8.2vw, 128px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.map-intro h1.map-intro-brand {
  width: clamp(210px, 20vw, 292px);
  max-width: 72%;
}

.map-intro-brand-svg {
  width: 100%;
  height: auto;
  display: block;
  fill: currentColor;
}

.map-intro-copy {
  color: rgba(33, 23, 20, 0.78);
  font-size: 18px;
}

.map-intro .eyebrow {
  color: var(--coral-dark);
}

.map-intro .button {
  border-color: var(--black);
  background: transparent;
  color: var(--black);
}

.map-intro .button--white {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: var(--cream);
}

.map-legend {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(246, 239, 223, 0.94);
  box-shadow: 0 8px 28px rgba(33, 23, 20, 0.15);
  color: var(--black);
}

.map-city-switcher {
  min-width: 304px;
  border: 1px solid rgba(33, 23, 20, 0.2);
  border-radius: 14px;
  padding: 10px;
  background: rgba(246, 239, 223, 0.96);
  box-shadow: 0 12px 36px rgba(33, 23, 20, 0.18);
  color: var(--black);
  backdrop-filter: blur(10px);
}

.leaflet-top.leaflet-right .map-city-switcher {
  margin-top: 20px;
  margin-right: 20px;
}

.map-city-switcher-label {
  display: block;
  margin: 1px 4px 8px;
  color: rgba(33, 23, 20, 0.58);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.map-city-switcher-buttons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-city-switcher button {
  min-height: 36px;
  flex: 1 1 auto;
  border: 0;
  border-radius: 9px;
  padding: 9px 12px 7px;
  background: transparent;
  color: var(--black);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.map-city-switcher button:hover,
.map-city-switcher button:focus-visible {
  background: rgba(195, 160, 85, 0.2);
}

.map-city-switcher button.is-active,
.map-city-switcher button[aria-pressed="true"] {
  background: var(--coral-dark);
  color: var(--cream);
}

.restaurants-section {
  position: relative;
  padding-top: 0;
  background: var(--cream);
}

.restaurants-section::after {
  display: none;
}

.restaurants-section .section-heading {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid rgba(33, 23, 20, 0.25);
  padding: clamp(70px, 8vw, 122px) max(32px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  background: var(--coral-dark);
  color: var(--cream);
  overflow: hidden;
}

.restaurants-section .section-heading::before,
.restaurants-section .section-heading::after {
  display: none;
}

.section-title {
  max-width: 980px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(68px, 9vw, 138px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-shadow: none;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 6px;
  border: 0;
  border-left: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 0;
  padding: 8px 0 8px 28px;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
}

.filters {
  margin-top: 42px;
  gap: 9px;
}

.filter-button {
  border-color: rgba(33, 23, 20, 0.45);
  padding: 13px 21px 11px;
  background: transparent;
}

.filter-button.is-active {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  color: var(--cream);
}

.restaurant-gallery-header {
  border-color: rgba(33, 23, 20, 0.42);
  padding: 27px 0 24px;
}

.restaurant-gallery-header h3 {
  color: var(--coral-dark);
  font-weight: 750;
}

.restaurant-gallery .restaurant-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 420px));
  justify-content: center;
}

.restaurant-grid.is-single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.restaurant-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.restaurant-gallery .restaurant-grid.is-four {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-grid.is-four .restaurant-card {
  min-height: 650px;
  aspect-ratio: 4 / 5;
}

.restaurant-grid.is-four .restaurant-card-copy {
  max-width: 460px;
}

.restaurant-card,
.restaurant-card.is-wide {
  grid-column: auto;
  min-height: 620px;
  aspect-ratio: 0.69;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(33, 23, 20, 0.16);
  background: var(--black);
  overflow: hidden;
}

.restaurant-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 24%, rgba(0, 0, 0, 0) 52%),
    linear-gradient(180deg, rgba(17, 12, 10, 0.16) 0%, rgba(17, 12, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.76) 100%);
}

.restaurant-card img {
  filter: saturate(1.04) contrast(1.01);
}

.restaurant-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.02);
}

.restaurant-card-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: clamp(24px, 3vw, 38px) clamp(20px, 2.6vw, 32px) 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  text-align: center;
}

.restaurant-card-copy {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.restaurant-card-name {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.restaurant-card-name h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.restaurant-card-name:hover,
.restaurant-card-name:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.restaurant-card-rating {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.restaurant-card-rating span:last-child {
  letter-spacing: 0.04em;
}

.restaurant-card-address {
  margin: 12px 0 0;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.restaurant-card-description {
  margin: 12px auto 0;
  font-family: var(--body);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: pretty;
}

.restaurant-card-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.restaurant-card-tags span {
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(33, 23, 20, 0.24);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.restaurant-card-actions {
  margin-top: 28px;
}

.restaurant-card-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
}

.restaurant-card-links a {
  color: inherit;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.restaurant-card-links a:hover,
.restaurant-card-links a:focus-visible {
  color: var(--sun);
}

.restaurant-card-reserve {
  width: fit-content;
  min-width: 132px;
  min-height: 44px;
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream);
  border-radius: 4px;
  padding: 11px 20px 9px;
  background: var(--cream);
  color: var(--black);
  font-family: var(--card-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.restaurant-card-reserve:hover,
.restaurant-card-reserve:focus-visible {
  background: var(--coral-dark);
  color: var(--black);
  transform: translateY(-2px);
}

.card-district {
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--sun);
  color: var(--black);
}

.card-content {
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.card-content h3 {
  width: auto;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--cream);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-align: left;
}

.card-meta {
  grid-template-columns: minmax(0, 1fr);
  gap: 15px;
  margin-top: 17px;
  border: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 0;
  padding: 14px 0 0;
  background: transparent;
  color: var(--cream);
}

.card-meta p {
  color: rgba(255, 253, 248, 0.82);
}

.card-link {
  justify-self: start;
  border-bottom: 1px solid currentColor;
  color: var(--cream);
}

.food-section {
  border-top: 0;
  border-bottom: 1px solid var(--black);
  background: var(--coral-dark);
  color: var(--cream);
}

.food-header {
  border-bottom: 1px solid rgba(255, 253, 248, 0.5);
}

.manifesto-line {
  color: var(--cream);
  font-size: clamp(62px, 9.4vw, 144px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.manifesto-line--outline {
  color: var(--pink);
  -webkit-text-stroke: 0;
}

.food-rail {
  gap: 20px;
}

.food-rail figure {
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.history-section {
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.history-image {
  margin: clamp(18px, 2.5vw, 38px);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}

.history-content h2,
.private-content h2,
.contact-column h2 {
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.stat {
  position: relative;
  border: 1px solid rgba(33, 23, 20, 0.2);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(33, 23, 20, 0.045);
}

.stat::before {
  position: absolute;
  top: -1px;
  left: 24px;
  width: 42px;
  height: 3px;
  background: var(--coral-dark);
  content: "";
}

.stat strong {
  color: var(--coral-dark);
}

.private-section {
  border-bottom: 1px solid var(--black);
  background: var(--pink);
}

.private-option {
  border-width: 1px;
  padding: 25px 0;
}

.private-option strong {
  font-size: 21px;
}

.recruitment-section {
  border-bottom: 0;
  background: var(--coral-dark);
  color: var(--cream);
}

@media (max-width: 920px) {
  .recruitment-section {
    border-bottom: 1px solid var(--black);
  }
}

.recruitment-content h2 {
  color: var(--cream);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.recruitment-content .button--black {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--black);
}

.recruitment-content .button--black:hover,
.recruitment-content .button--black:focus-visible {
  border-color: var(--sun);
  background: var(--sun);
}

.contact-grid {
  border-top: 0;
}

.contact-column {
  background: var(--cream);
  color: var(--black);
}

.contact-column > p {
  color: rgba(33, 23, 20, 0.68);
}

.contact-list li {
  border-color: rgba(33, 23, 20, 0.42);
}

.footer-section {
  border-top: 1px solid rgba(255, 253, 248, 0.32);
  background: var(--coral-dark);
  color: var(--cream);
}

.footer-bottom {
  border-color: rgba(255, 253, 248, 0.36);
  color: rgba(255, 253, 248, 0.7);
}

.legal-main {
  background: var(--cream);
}

.legal-title {
  color: var(--coral-dark);
  font-weight: 750;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.legal-index,
.legal-content section {
  border-width: 1px;
}

/* Pages établissement */
.venue-page {
  --venue-accent: var(--coral-dark);
  --venue-soft: var(--pink);
  background: var(--cream);
}

.venue-hero {
  border-bottom: 1px solid var(--black);
}

.venue-hero-copy {
  background: var(--venue-accent);
  color: var(--cream);
}

.venue-hero h1 {
  color: var(--cream);
  font-weight: 750;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.venue-hero-lead {
  color: rgba(255, 253, 248, 0.86);
  font-weight: 500;
}

.venue-hero-media {
  border-left: 1px solid var(--black);
}

.venue-hero-address {
  border: 0;
  border-radius: 3px;
  padding: 13px 15px;
  background: rgba(246, 239, 223, 0.94);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(33, 23, 20, 0.2);
}

.venue-intro {
  border-bottom: 1px solid var(--black);
  background: var(--cream);
}

.venue-intro h2,
.venue-gallery h2,
.venue-reviews h2,
.venue-reservation h2,
.venue-info h2 {
  font-weight: 750;
  letter-spacing: -0.055em;
}

.venue-fact {
  border-width: 1px;
}

.venue-gallery {
  background: var(--venue-accent);
  color: var(--cream);
}

.instagram-tile {
  border: 0;
  border-radius: 3px;
  box-shadow: none;
}

.instagram-tile span,
.mock-label {
  border: 0;
  border-radius: 999px;
  background: var(--sun);
  color: var(--black);
}

.venue-reviews {
  border-bottom: 1px solid var(--black);
  background: var(--pink);
}

.review-stars {
  color: var(--venue-accent);
}

.review-card {
  border: 1px solid rgba(33, 23, 20, 0.42);
  border-radius: 3px;
  background: var(--cream);
  box-shadow: none;
}

.venue-reservation {
  border-bottom: 1px solid var(--black);
}

.reservation-module,
.reservation-module--phone {
  border: 1px solid rgba(33, 23, 20, 0.45);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(33, 23, 20, 0.12);
  overflow: hidden;
}

.venue-info {
  background: var(--venue-accent);
  color: var(--cream);
}

.venue-info-list dt,
.venue-info-list dd {
  border-color: rgba(255, 253, 248, 0.46);
  border-width: 1px;
}

@media (max-width: 1100px) {
  .restaurants-section .section-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  }

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

@media (max-width: 780px) {
  .map-city-switcher {
    min-width: min(304px, calc(100vw - 88px));
    padding: 8px;
  }

  .leaflet-top.leaflet-right .map-city-switcher {
    margin-top: 12px;
    margin-right: 12px;
  }

  .map-city-switcher-label {
    display: none;
  }

  .map-city-switcher button {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .map-intro {
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
  }

  .map-intro h1.map-intro-brand {
    width: clamp(190px, 58vw, 250px);
    max-width: 78%;
  }

  .landmark-marker--secondary {
    display: none;
  }

  .landmark-marker {
    gap: 3px;
  }

  .landmark-symbol {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    padding: 2px;
  }

  .landmark-symbol--prominent {
    width: 50px;
    height: 60px;
    flex-basis: 60px;
  }

  .landmark-label {
    max-width: 88px;
    font-size: 10px;
  }

  .restaurants-section .section-heading {
    padding: 62px 22px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .section-title {
    font-size: clamp(58px, 18vw, 84px);
  }

  .section-heading > p {
    border-top: 1px solid rgba(255, 253, 248, 0.55);
    border-left: 0;
    padding: 24px 0 0;
  }

  .restaurant-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-gallery .restaurant-grid.is-four {
    max-width: 520px;
    grid-template-columns: minmax(0, 1fr);
  }

  .restaurant-grid.is-four .restaurant-card {
    min-height: 590px;
    aspect-ratio: 0.69;
  }

  .restaurant-card,
  .restaurant-card.is-wide {
    min-height: 590px;
  }

  .venue-hero-media {
    border-top: 1px solid var(--black);
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .section-title {
    max-width: 100%;
    font-size: clamp(44px, 14vw, 58px);
    overflow-wrap: anywhere;
  }

  .map-intro h1 {
    font-size: clamp(64px, 22vw, 88px);
  }

  .card-content h3 {
    font-size: 38px;
  }

  .manifesto-line {
    font-size: clamp(52px, 17vw, 74px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .restaurant-card img,
  .button,
  .filter-button {
    transition: none;
  }
}
