:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #5d5852;
  --paper: #fffaf1;
  --panel: #ffffff;
  --line: #e5ded2;
  --green: #d8432e;
  --green-soft: #fff0e8;
  --mint: #78a83b;
  --red: #d8432e;
  --gold: #f3bc3d;
  --blue: #78a83b;
  --tomato: #d8432e;
  --tomato-dark: #a92e1e;
  --lime: #78a83b;
  --maize: #f3bc3d;
  --charcoal: #1e1b18;
  --shadow: 0 24px 70px rgba(34, 25, 18, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0.85rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid rgba(30, 27, 24, 0.12);
  box-shadow: 0 12px 40px rgba(30, 27, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  font-size: 0.82rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

nav a {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 750;
}

nav a:hover,
nav a[aria-current="page"] {
  background: rgba(216, 67, 46, 0.1);
  color: var(--tomato);
}

nav a.nav-cta {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 8px 18px rgba(216, 67, 46, 0.18);
}

nav a.nav-cta.secondary {
  background: var(--lime);
  color: #fff;
  box-shadow: 0 8px 18px rgba(120, 168, 59, 0.18);
}

nav a.nav-cta:hover,
nav a.nav-cta[aria-current="page"] {
  background: var(--tomato-dark);
  color: #fff;
}

nav a.nav-cta.secondary:hover,
nav a.nav-cta.secondary[aria-current="page"] {
  background: #5f8b2d;
  color: #fff;
}

.shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: block;
  min-height: 0;
  padding: 58px 0 26px;
  text-align: center;
}

.hero-copy {
  margin: 0 auto;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 820px;
  margin: 30px auto 0;
  border: 1px solid #b8cfcb;
  border-radius: 999px;
  padding: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(4, 31, 41, 0.16);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.quick-links a {
  border: 1px solid #c8dedb;
  border-radius: 999px;
  padding: 9px 12px;
  background: #f7fbfa;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

input[type="search"] {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.search-button {
  min-width: 118px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.search-button:hover {
  background: #00564f;
}

.map-panel {
  display: none;
}

.river {
  position: absolute;
  inset: -30px 37% -30px 48%;
  transform: rotate(9deg);
  background: linear-gradient(90deg, rgba(47, 104, 143, 0), rgba(47, 104, 143, 0.62), rgba(47, 104, 143, 0));
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 18px rgba(23, 33, 31, 0.22);
}

.pin-one { left: 28%; top: 32%; }
.pin-two { right: 24%; top: 24%; background: var(--red); }
.pin-three { left: 44%; bottom: 24%; background: var(--gold); }
.pin-four { right: 36%; bottom: 39%; background: var(--blue); }

.map-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.13);
}

.map-caption span {
  color: var(--muted);
}

.home-map-section {
  scroll-margin-top: 92px;
}

.home-map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.home-map-filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.home-map-filter[aria-pressed="true"] {
  border-color: var(--tomato);
  background: var(--tomato);
  color: #fff;
}

.home-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.home-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8ede7;
  box-shadow: 0 16px 34px rgba(30, 27, 24, 0.08);
}

.home-map .leaflet-container,
.home-map.leaflet-container {
  width: 100%;
  height: 100%;
  min-height: 520px;
  font: inherit;
}

.home-map .leaflet-control-attribution {
  font-size: 0.66rem;
}

.home-map-list {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 520px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.home-map-count {
  color: var(--muted);
  font-weight: 800;
}

.home-map-count strong {
  color: var(--tomato);
  font-size: 1.25rem;
}

.home-map-result {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fffdf9;
  cursor: pointer;
}

.home-map-result:hover,
.home-map-result.selected {
  border-color: var(--tomato);
  background: var(--green-soft);
}

.home-map-result strong {
  color: var(--charcoal);
  line-height: 1.25;
}

.home-map-result span,
.home-map-result a,
.home-map-note,
.home-map-empty {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.home-map-result a {
  width: fit-content;
  color: var(--tomato);
  font-weight: 900;
}

.home-map-note,
.home-map-empty {
  margin: 4px 0 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 0 34px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 0 20px;
}

.stat-item {
  display: grid;
  gap: 2px;
  min-height: 76px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: var(--panel);
  box-shadow: none;
}

.stat-item strong {
  color: var(--green);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-weight: 800;
}

.category-tile,
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 1rem;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.category-tile {
  display: grid;
  gap: 6px;
  padding: 14px;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(4, 31, 41, 0.1);
}

.category-tile strong {
  color: var(--green);
}

.category-tile span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.category-tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.48;
}

.content-band,
.owner-band {
  border-block: 1px solid var(--line);
  background: #f7fbfa;
}

.seo-grid,
.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 5vw, 54px);
  padding: 46px 0;
}

.seo-copy h2,
.owner-grid h2 {
  max-width: 760px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.seo-copy p,
.owner-grid p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.seo-note {
  align-self: start;
  display: grid;
  gap: 10px;
  border: 1px solid #c9d5cc;
  border-radius: 12px;
  padding: 18px;
  background: var(--green-soft);
}

.seo-note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.listing-section,
.category-page,
.guide-section,
.faq-section {
  padding: 34px 0 58px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.section-heading p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.category-featured-section {
  margin: 26px 0 34px;
}

.category-featured-section .section-heading {
  margin-bottom: 14px;
}

.category-featured-list {
  display: grid;
  gap: 18px;
}

.category-featured-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(34, 25, 18, 0.07);
}

.category-featured-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  min-height: 260px;
  padding: 8px;
}

.category-featured-card.single-photo .category-featured-media {
  grid-template-columns: 1fr;
}

.category-featured-photo {
  display: block;
  min-height: 244px;
  border-radius: calc(var(--radius) - 2px);
  background-position: center;
  background-size: cover;
}

.category-featured-photo.secondary {
  min-height: 244px;
}

.category-featured-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
}

.category-featured-copy h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  line-height: 0.98;
}

.category-featured-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  line-height: 1.5;
}

.category-featured-rating {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--lime);
  font-size: 1.4rem;
  font-weight: 1000;
}

.category-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.category-featured-actions a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(120, 168, 59, 0.14);
}

.category-featured-actions a.iwantfed {
  background: rgba(120, 168, 59, 0.14);
}

.category-featured-actions a.app-store,
.category-featured-actions a.google-play {
  width: 118px;
  padding: 4px;
  background: transparent;
}

.category-featured-actions img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.category-featured-actions a.app-store img,
.category-featured-actions a.google-play img {
  width: 100%;
  height: auto;
  max-height: 34px;
}

.category-featured-actions a span {
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.category-featured-link {
  width: max-content;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.category-list-heading {
  margin-top: 8px;
}

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

.area-carousel-controls {
  display: flex;
  gap: 8px;
}

.area-carousel-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--charcoal);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.area-carousel-controls button:hover {
  border-color: var(--tomato);
  color: var(--tomato);
}

.area-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.area-carousel::-webkit-scrollbar {
  display: none;
}

.area-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 67, 46, 0.18), rgba(0, 108, 100, 0.16)),
    var(--area-image, linear-gradient(135deg, var(--tomato), var(--green))) center center / cover;
  scroll-snap-align: start;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 7, 6, 0.74), rgba(8, 7, 6, 0.16)),
    inherit;
  opacity: 0.95;
}

.area-card a {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 220px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: #fff;
  text-decoration: none;
}

.area-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.area-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.area-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.related-areas-section {
  margin-top: 3rem;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guides-index-page .section-heading {
  margin-bottom: 26px;
}

.guide-copy-section {
  margin-bottom: 28px;
  padding: clamp(18px, 3vw, 28px);
}

.guide-copy-section .eyebrow {
  margin: 0 0 8px;
}

.guide-copy-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.8vw, 2.65rem);
  line-height: 1;
}

.guide-copy-section p:not(.eyebrow) {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
}

.guide-copy-section p + p {
  margin-top: 10px;
}

.guide-detail-filters {
  margin-top: 6px;
}

.guide-detail-filters {
  margin-bottom: 16px;
}

.guide-detail-sort {
  margin-bottom: 18px;
}

.guide-detail-count,
.guide-index-empty {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-index-grid {
  display: grid;
  gap: 38px;
}

.guide-index-group {
  display: grid;
  gap: 14px;
}

.guide-index-group h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-index-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(34, 25, 18, 0.06);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-index-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(34, 25, 18, 0.1);
}

.guide-index-photo {
  display: block;
  min-height: 138px;
  background:
    linear-gradient(0deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.08)),
    var(--guide-image, linear-gradient(135deg, var(--tomato), var(--green))) center center / cover;
}

.guide-index-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.guide-index-meta {
  color: var(--tomato);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.guide-index-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.08;
}

.guide-index-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.intent-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.intent-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--panel);
  box-shadow: none;
}

.intent-grid h3,
.faq-grid h3 {
  font-size: 1.04rem;
  line-height: 1.28;
}

.intent-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.owner-band {
  background: #e8f8f5;
}

.owner-steps {
  display: grid;
  gap: 10px;
  align-self: center;
}

.owner-steps span {
  border: 1px solid #c7d5dc;
  border-radius: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(4, 31, 41, 0.11);
}

.photo {
  min-height: 170px;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(135deg, var(--photo-a), var(--photo-b));
}

.card-body {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-title-row h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 3px 6px;
  background: #fff0e7;
  color: #a84515;
  font-size: 0.75rem;
  font-weight: 800;
}

.status-pill.claimed {
  background: var(--green-soft);
  color: var(--green);
}

.meta,
.description {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.meta,
.description,
.feature-row {
  margin-bottom: 0;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature {
  border-radius: 999px;
  padding: 4px 7px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

.feature-icon {
  display: inline-grid;
  min-height: 25px;
  place-items: center;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.store-badge-image {
  display: block;
  width: 82px;
  height: auto;
  max-height: 25px;
  object-fit: contain;
}

.detail-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.detail-hero {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.detail-photo {
  min-height: 340px;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.82), transparent 23%),
    linear-gradient(135deg, var(--photo-a), var(--photo-b));
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  padding: clamp(18px, 4vw, 32px);
}

.detail-content h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.side-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.cta-box {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #f8faf7;
}

.cta-box p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.action-button {
  display: inline-grid;
  place-items: center;
  padding: 12px 14px;
  cursor: pointer;
}

.action-button.primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.empty-state {
  padding: 52px 0;
  color: var(--muted);
}

.exchange-page {
  width: 100%;
  padding-top: 0;
}

.venue-hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 76px), 760px);
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.venue-hero-media,
.venue-hero-overlay {
  position: absolute;
  inset: 0;
}

.venue-hero-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)),
    url("/assets/images/the-exchange-hero.png") center center/cover;
}

.browns-page .venue-hero-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)),
    url("/assets/images/browns-in-town-hero.png") center center/cover;
}

.venue-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.72) 35%, rgba(8, 7, 6, 0.18) 72%, rgba(8, 7, 6, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.64), rgba(8, 7, 6, 0.08) 62%);
}

.venue-hero-content {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.25rem) 0;
}

.back-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.venue-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 950;
  line-height: 0.92;
}

.venue-summary {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.cuisine-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cuisine-labels span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.38rem 0.58rem;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.google-rating-pill {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  padding: 0.55rem 0.72rem;
  background: rgba(8, 7, 6, 0.42);
  color: white;
  backdrop-filter: blur(10px);
}

.google-rating-pill strong {
  display: grid;
  min-width: 44px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--maize);
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 950;
}

.google-rating-pill span,
.google-rating-pill small {
  font-weight: 900;
}

.google-rating-pill small {
  color: rgba(255, 255, 255, 0.72);
}

.venue-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.venue-hero-actions .action-button {
  min-width: 156px;
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.42);
}

.app-store-button {
  display: inline-grid;
  width: 180px;
  place-items: center;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.app-store-button:hover {
  transform: translateY(-1px);
}

.app-store-button img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.claim-listing-link {
  align-self: center;
  border: 0;
  padding: 0.2rem 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.claim-listing-link:hover {
  color: var(--maize);
}

.venue-score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1rem;
}

.venue-score-row span:not(.venue-score) {
  border-radius: var(--radius);
  padding: 0.48rem 0.62rem;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

.venue-score {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--maize);
  font-weight: 950;
}

.action-button.dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: white;
}

.action-button.muted {
  color: var(--muted);
  background: white;
}

.action-button.unavailable,
.action-button:disabled {
  border-color: #ddd6ca;
  color: #9a9288;
  background: #eee8dc;
  cursor: not-allowed;
  opacity: 0.72;
}

.venue-layout {
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin: 1rem auto 0;
}

.venue-main,
.venue-sidebar {
  display: grid;
  gap: 1rem;
}

.mobile-detail-panels {
  display: none;
}

.venue-section,
.venue-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 40px rgba(34, 25, 18, 0.06);
}

.venue-section {
  padding: clamp(1rem, 3vw, 1.6rem);
}

.venue-section h2 {
  max-width: 720px;
  margin: 0.4rem 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.venue-section p {
  color: var(--muted);
  line-height: 1.75;
}

.guide-copy-section {
  margin-bottom: 28px;
  padding: clamp(18px, 3vw, 28px);
}

.guide-copy-section .eyebrow {
  margin: 0 0 8px;
}

.guide-copy-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.8vw, 2.65rem);
  line-height: 1;
}

.guide-copy-section p:not(.eyebrow) {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
}

.guide-copy-section p + p {
  margin-top: 10px;
}

.more-info-section h2 {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.more-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.more-info-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: var(--paper);
}

.more-info-grid h3 {
  margin: 0 0 0.65rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 950;
}

.more-info-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-info-grid li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.32;
}

.more-info-grid li::before {
  content: "✓";
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  width: 0.95rem;
  height: 0.95rem;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 1000;
  line-height: 1;
}

.customers-say {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.customers-say h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.customers-say ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customers-say li {
  border: 1px solid rgba(0, 108, 100, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-kicker-row {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-kicker-row h2 {
  margin-bottom: 0;
}

.section-kicker-row > p {
  max-width: 270px;
  margin: 0;
  font-weight: 800;
}

.section-kicker-row > .section-helper-text {
  font-weight: 400;
}

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

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.04), rgba(8, 7, 6, 0.62)),
    var(--gallery-image);
  background-size: cover;
}

.google-gallery-tile {
  background-position: center;
}

.photo-carousel {
  margin-top: 0.8rem;
}

.photo-carousel-controls {
  margin-bottom: 0.8rem;
}

.google-photo-track {
  display: flex;
  grid-template-columns: none;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.google-photo-track::-webkit-scrollbar {
  display: none;
}

.google-photo-track .gallery-tile {
  flex: 0 0 calc((100% - 1.6rem) / 3);
  scroll-snap-align: start;
}

.gallery-large {
  --gallery-image: url("/assets/images/the-exchange-gallery-bar.png");
  background-position: center;
}

.gallery-food {
  --gallery-image: url("/assets/images/the-exchange-gallery-steak.png");
  background-position: 48% 50%;
}

.gallery-drinks {
  --gallery-image: url("/assets/images/the-exchange-gallery-pitta.png");
  background-position: center;
}

.browns-gallery-dining {
  --gallery-image: url("/assets/images/browns-gallery-cheese.png");
  background-position: center;
}

.browns-gallery-food {
  --gallery-image: url("/assets/images/browns-gallery-duck.png");
  background-position: center;
}

.browns-gallery-drinks {
  --gallery-image: url("/assets/images/browns-gallery-table.png");
  background-position: center;
}

.gallery-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: var(--radius);
  padding: 0.52rem 0.68rem;
  background: rgba(255, 250, 241, 0.92);
  color: var(--charcoal);
  font-weight: 950;
}

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

.generated-detail-sections {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.reviews-section h2 {
  max-width: 620px;
}

.google-verified-title {
  display: grid;
  gap: 0.2rem;
}

.google-word {
  display: inline-flex;
  width: max-content;
  font-size: clamp(1.05rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.google-verified-title h2 {
  color: #12182b;
  font-size: clamp(0.95rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
}

.google-verified-stars {
  color: #fbbc04;
  font-size: clamp(0.8rem, 1.5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.google-verified-stars span {
  display: inline-grid;
  width: 1.05em;
  height: 1.05em;
  margin-right: 0.15em;
  place-items: center;
  border-radius: 999px;
  background: #58a55c;
  color: #fff;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.1em;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc04;
}

.google-green {
  color: #34a853;
}

.google-photos-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25em;
  color: #777;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.google-photos-title .google-word {
  font-size: 1em;
}

.review-score-card {
  display: grid;
  min-width: 150px;
  justify-items: end;
  gap: 0.25rem;
}

.review-score-card strong {
  color: var(--green);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.9;
}

.review-score-card span {
  color: var(--muted);
  font-weight: 900;
}

.review-import-pending {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--green-soft);
  color: var(--muted);
}

.review-import-pending strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  font-size: 1rem;
}

.review-import-pending p {
  margin: 0;
}

.review-carousel {
  margin-top: 0.8rem;
}

.review-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.review-carousel-controls button {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--charcoal);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 950;
  cursor: pointer;
}

.review-carousel-controls button:hover {
  border-color: var(--tomato);
  background: var(--tomato);
  color: white;
}

.review-quote-grid {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-quote-grid::-webkit-scrollbar {
  display: none;
}

.review-quote-grid article {
  flex: 0 0 calc((100% - 1.6rem) / 3);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: white;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.review-quote-grid strong,
.review-quote-grid span {
  display: block;
  font-weight: 950;
}

.review-quote-grid p {
  display: -webkit-box;
  min-height: 5.8rem;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-quote-grid .review-author {
  color: var(--green);
  font-size: 0.95rem;
}

.review-media-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-text-tile {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid var(--line);
  padding: clamp(0.85rem, 2vw, 1.2rem);
  background: white;
  color: var(--charcoal);
}

.review-text-tile.tomato,
.review-text-tile.charcoal,
.review-text-tile.lime {
  border-color: transparent;
  color: #fff;
}

.review-text-tile.tomato {
  background: var(--tomato);
}

.review-text-tile.charcoal {
  background: var(--charcoal);
}

.review-text-tile.maize {
  border-color: rgba(30, 27, 24, 0.1);
  background: var(--maize);
}

.review-text-tile.paper {
  background: var(--paper);
}

.review-text-tile.lime {
  background: var(--lime);
}

.review-text-tile .review-author {
  color: var(--tomato);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  font-weight: 950;
  line-height: 1.1;
}

.review-text-tile.tomato .review-author,
.review-text-tile.charcoal .review-author,
.review-text-tile.lime .review-author {
  color: #fff;
}

.review-text-tile.maize .review-author {
  color: var(--charcoal);
}

.review-text-tile strong {
  color: inherit;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 950;
}

.review-stars {
  display: flex;
  gap: 0.12rem;
  letter-spacing: 0;
  line-height: 1;
}

.review-stars .filled {
  color: var(--maize);
}

.review-stars .outlined {
  color: rgba(30, 27, 24, 0.36);
}

.review-text-tile.tomato .review-stars .filled,
.review-text-tile.charcoal .review-stars .filled,
.review-text-tile.lime .review-stars .filled {
  color: #fff;
}

.review-text-tile.tomato .review-stars .outlined,
.review-text-tile.charcoal .review-stars .outlined,
.review-text-tile.lime .review-stars .outlined {
  color: rgba(255, 255, 255, 0.46);
}

.review-text-tile.maize .review-stars .filled {
  color: var(--charcoal);
}

.review-text-tile p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 750;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-text-tile.tomato p,
.review-text-tile.charcoal p,
.review-text-tile.lime p {
  color: rgba(255, 255, 255, 0.9);
}

.review-text-tile.maize p {
  color: rgba(30, 27, 24, 0.78);
}

.review-text-tile .review-read-more {
  width: max-content;
  margin-top: auto;
  padding: 0.52rem 0.72rem;
}

.review-text-tile.tomato .review-read-more,
.review-text-tile.charcoal .review-read-more,
.review-text-tile.lime .review-read-more {
  background: #fff;
  color: var(--charcoal);
}

.review-text-tile.maize .review-read-more {
  background: var(--charcoal);
  color: #fff;
}

.review-photo-tile {
  background-image:
    linear-gradient(180deg, rgba(18, 18, 18, 0.02), rgba(18, 18, 18, 0.5)),
    var(--review-photo);
  background-size: cover;
  background-position: center;
}

.review-photo-button {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.review-read-more {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: var(--tomato);
  color: white;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.review-read-more:hover {
  background: var(--green);
}

.modal-open {
  overflow: hidden;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 25, 18, 0.54);
}

.review-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(78vh, 760px);
  overflow: auto;
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.6rem);
  background: white;
  box-shadow: 0 24px 80px rgba(34, 25, 18, 0.24);
}

.review-modal-panel h2 {
  margin: 0.3rem 2rem 0.5rem 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.review-modal-rating {
  display: block;
  margin-bottom: 1rem;
  color: var(--tomato);
  font-size: 1rem;
}

.review-modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  white-space: pre-line;
}

.review-modal-photo {
  margin: 1rem 0 0;
}

.review-modal-photo img {
  display: block;
  width: 100%;
  max-height: 62vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--charcoal);
}

.review-modal-photo figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.claim-modal-panel {
  width: min(560px, 100%);
}

.claim-modal-intro {
  margin: 0 2rem 1rem 0;
  color: var(--muted);
  line-height: 1.55;
}

.claim-form {
  display: grid;
  gap: 0.85rem;
}

.claim-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 950;
}

.claim-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.8rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.claim-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 108, 100, 0.12);
}

.claim-form .action-button {
  width: 100%;
  justify-content: center;
  margin-top: 0.2rem;
}

.claim-form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.menu-preview-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--paper);
}

.menu-preview-grid span {
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
}

.menu-preview-grid h3 {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.05rem;
}

.menu-preview-grid p {
  margin: 0;
  line-height: 1.55;
}

.venue-faq-list {
  display: grid;
  gap: 0.7rem;
}

.related-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.related-listings-grid a {
  display: grid;
  gap: 0.35rem;
  min-height: 112px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--charcoal);
  text-decoration: none;
}

.related-listings-grid a:hover {
  border-color: var(--tomato);
}

.related-listings-grid strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.related-listings-grid span {
  color: var(--muted);
  line-height: 1.35;
}

.nearby-eyebrow {
  margin-top: 1.5rem;
}

.venue-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.venue-faq-list summary {
  position: relative;
  display: block;
  padding: 1rem 3rem 1rem 1rem;
  color: var(--charcoal);
  font-weight: 950;
  cursor: pointer;
}

.venue-faq-list summary::-webkit-details-marker {
  display: none;
}

.venue-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--tomato);
  font-size: 1.4rem;
  line-height: 1;
}

.venue-faq-list details[open] summary::after {
  content: "-";
}

.venue-faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.voucher-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background:
    linear-gradient(90deg, rgba(30, 27, 24, 0.94), rgba(30, 27, 24, 0.78)),
    var(--voucher-bg) center/cover;
  color: white;
}

.voucher-feature > * {
  position: relative;
  z-index: 1;
}

.voucher-feature-logo {
  display: block;
  width: min(260px, 72vw);
  max-height: 74px;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.iwantfed-feature .voucher-feature-logo {
  width: min(330px, 76vw);
}

.iwantfed-feature {
  background:
    linear-gradient(90deg, rgba(20, 15, 10, 0.92), rgba(20, 15, 10, 0.72)),
    var(--voucher-bg) center/cover;
}

.voucher-feature .eyebrow,
.voucher-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.voucher-feature h2 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.voucher-feature p {
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

.venue-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-cloud span {
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  background: var(--green-soft);
  color: var(--tomato);
  font-weight: 900;
}

.venue-panel {
  padding: 1rem;
}

.panel-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.venue-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.venue-panel dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.venue-panel dl div,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.venue-panel dt,
.hours-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.venue-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.hours-list strong {
  display: grid;
  gap: 0.2rem;
  text-align: right;
}

.hours-list strong em {
  font-style: normal;
}

.hours-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li:last-child,
.venue-panel dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.venue-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--paper);
}

.venue-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.owner-claim-panel {
  background: var(--maize);
}

.owner-claim-panel p {
  color: rgba(30, 27, 24, 0.78);
}

@media (max-width: 880px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .venue-layout {
    grid-template-columns: 1fr;
  }

  .generated-venue-page .mobile-detail-panels {
    display: grid;
    gap: 1rem;
  }

  .generated-venue-page .desktop-detail-panel {
    display: none;
  }

  .section-kicker-row,
  .voucher-feature {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .exchange-gallery,
  .menu-preview-grid,
  .more-info-grid,
  .related-listings-grid {
    grid-template-columns: 1fr;
  }

  .review-quote-grid article {
    flex-basis: 86%;
  }

  .google-photo-track .gallery-tile {
    flex-basis: 86%;
  }

  .gallery-large {
    min-height: 260px;
  }

  .venue-hero {
    min-height: 560px;
  }

  .venue-hero-content {
    align-content: end;
    padding-block: 3rem;
  }

  .venue-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero {
    min-height: auto;
  }

  .map-panel {
    min-height: 360px;
  }

  .search-row {
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .search-button {
    width: 100%;
  }

  .hero-result-item {
    grid-template-columns: 1fr;
  }

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

  .category-grid,
  .listing-grid,
  .stat-strip,
  .intent-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .category-grid,
  .listing-grid,
  .stat-strip,
  .intent-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  nav a {
    padding-inline: 9px;
  }
}

/* Screenshot-style home layout */
.topbar {
  position: relative;
  padding-inline: max(22px, calc((100vw - 1040px) / 2));
}

.shell {
  width: min(820px, calc(100% - 32px));
}

.hero-band {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background-image:
    linear-gradient(90deg, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.68) 38%, rgba(8, 7, 6, 0.22) 76%, rgba(8, 7, 6, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.55) 0%, rgba(8, 7, 6, 0) 56%),
    image-set(
      url("/assets/images/derry_food.avif") type("image/avif"),
      url("/assets/images/derry_food.webp") type("image/webp")
    );
  background-position: center;
  background-size: cover;
}

.hero-band .hero {
  display: flex;
  min-height: 430px;
  align-items: center;
  padding: 42px 0;
  text-align: left;
}

.hero-copy {
  display: grid;
  gap: 14px;
  width: min(920px, 100%);
  margin: 0;
  max-width: none;
  align-items: start;
}

.hero-copy > h1,
.hero-copy > .search-row,
.hero-copy > .service-tabs,
.hero-copy > .hero-results {
  grid-column: 1;
}

.hero-map-panel {
  grid-column: 1;
  grid-row: auto;
  align-self: stretch;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero-map-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.hero-map-heading p {
  margin: 0 0 2px;
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-map-heading h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-map-heading span {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-map-panel .home-map-layout {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 10px;
}

.hero-map-panel .home-map,
.hero-map-panel .home-map.leaflet-container,
.hero-map-panel .home-map .leaflet-container {
  min-height: 320px;
}

.hero-map-panel .home-map-list {
  order: 0;
  max-height: 320px;
  padding: 8px;
}

.hero-map-panel .home-map {
  order: 0;
}

.hero-map-panel .home-map-result {
  padding: 8px;
}

.hero-map-panel .home-map-controls {
  margin-bottom: 10px;
}

.hero-map-panel .home-map-filter {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.hero h1 {
  max-width: 470px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2.65rem, 6vw, 4.8rem);
  font-weight: 950;
  line-height: 0.96;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 14px;
}

.service-tabs button {
  display: grid;
  gap: 2px;
  min-height: 54px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.service-tabs button:hover,
.service-tabs button.active {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.22);
}

.service-tabs span {
  color: var(--maize);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-results {
  max-width: 560px;
  margin-top: 12px;
}

.hero-results:empty {
  display: none;
}

.hero-results-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-results-head span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-results-list {
  display: grid;
  gap: 8px;
}

.hero-result-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(8, 7, 6, 0.62);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-result-main {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #fff;
}

.hero-result-main strong,
.hero-result-main span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-result-main span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
}

.hero-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.hero-result-actions a {
  border-radius: 999px;
  padding: 0.5rem 0.68rem;
  background: var(--maize);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-results-empty {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(8, 7, 6, 0.62);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero .lede,
.hero .quick-links,
.map-panel {
  display: none;
}

.hero-food {
  display: none;
}

.search-row {
  grid-template-columns: 168px 1fr 84px;
  gap: 0;
  max-width: 560px;
  min-height: 54px;
  margin: 0;
  border: 0;
  border-radius: var(--radius);
  padding: 8px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

.location-pill {
  display: flex;
  align-items: center;
  border-right: 1px solid #d7e0de;
  padding: 0 18px;
  color: #22363b;
  font-size: 0.78rem;
  font-weight: 800;
}

.location-pill::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 10px;
  border-radius: 50%;
  background: #6b7e83;
}

input[type="search"] {
  min-height: 38px;
  border-radius: 0;
  padding: 0 18px;
  font-size: 0.78rem;
}

.search-button {
  min-width: 0;
  min-height: 38px;
  border-radius: var(--radius);
  background: var(--tomato);
  box-shadow: 0 14px 32px rgba(216, 67, 46, 0.28);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.home-section {
  padding: 38px 0 0;
}

.section-heading {
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: 1.35rem;
  font-weight: 900;
}

.section-heading p {
  display: none;
}

.section-link,
.recommend-grid a,
.offer-card a,
.top100-banner a {
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-banner {
  position: relative;
  display: block;
  aspect-ratio: 400 / 120;
  min-height: 0;
  margin-top: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 48px rgba(34, 25, 18, 0.08);
}

.promo-ad-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
  opacity: 0;
  animation: promoAdFade 12s infinite;
}

.promo-ad-slide:nth-child(2) {
  animation-delay: 6s;
}

.promo-ad-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.waterfoot-ad img {
  object-position: center center;
}

.brunswick-ad img {
  object-position: center center;
}

.promo-ad-slide span {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 2;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 7, 6, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes promoAdFade {
  0%,
  42% {
    opacity: 1;
    z-index: 2;
  }

  50%,
  92% {
    opacity: 0;
    z-index: 1;
  }

  100% {
    opacity: 1;
    z-index: 2;
  }
}

.offer-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
}

.offer-layout .listing-grid,
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.top-picks-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.top-pick-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: var(--radius);
}

.top-pick-image {
  background-size: cover;
  background-position: center;
}

.top-pick-image a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: clamp(0.8rem, 1.8vw, 1.15rem);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.02), rgba(18, 18, 18, 0.46));
  color: #fff;
}

.top-pick-image strong {
  display: -webkit-box;
  max-width: 92%;
  overflow: hidden;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-pick-chip {
  width: max-content;
  max-width: min(100%, 22ch);
  overflow: hidden;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.84);
  color: #fff;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 900;
  line-height: 1.08;
}

.top-pick-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(0.55rem, 1.1vw, 0.82rem);
  padding: clamp(0.85rem, 1.65vw, 1.25rem);
  color: #fff;
}

.top-pick-info.tomato {
  background: var(--tomato);
}

.top-pick-info.dark {
  background: var(--charcoal);
}

.top-pick-info.gold {
  background: var(--maize);
  color: var(--charcoal);
}

.top-pick-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.66rem, 1vw, 0.82rem);
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-pick-info h3 {
  display: -webkit-box;
  margin: 0;
  max-width: 14ch;
  overflow: hidden;
  font-size: clamp(1.12rem, 1.95vw, 1.78rem);
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.top-pick-info span {
  display: -webkit-box;
  max-width: 32ch;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.72rem, 1.05vw, 0.88rem);
  font-weight: 750;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-pick-info a {
  width: max-content;
  margin-top: auto;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 900;
}

.top-pick-info.gold p,
.top-pick-info.gold span {
  color: rgba(30, 27, 24, 0.78);
}

.top-pick-info.gold a {
  background: var(--charcoal);
  color: #fff;
}

.offer-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--maize);
}

.offer-photo {
  height: 128px;
  background: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=420&q=80") center/cover;
}

.offer-card h3,
.offer-card p,
.offer-card a {
  margin-inline: 14px;
}

.offer-card h3 {
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 1.2rem;
}

.offer-card p {
  color: rgba(30, 27, 24, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
}

.offer-card a {
  display: inline-block;
  margin-bottom: 14px;
}

.listing-card {
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(34, 25, 18, 0.06);
}

.photo {
  min-height: 124px;
  background-position: center;
  background-size: cover;
}

.card-body {
  gap: 5px;
  padding: 10px;
}

.card-title-row {
  align-items: start;
}

.card-title-row h3 {
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill {
  background: transparent;
  color: var(--lime);
  font-size: 0.78rem;
  padding: 0;
}

.meta,
.description {
  font-size: 0.72rem;
  line-height: 1.35;
}

.description {
  -webkit-line-clamp: 2;
}

.feature-row {
  margin-top: 4px;
}

.feature {
  border-radius: var(--radius);
  padding: 3px 6px;
  background: rgba(120, 168, 59, 0.18);
  color: var(--lime);
  font-size: 0.62rem;
}

.feature-icon.app-store,
.feature-icon.google-play {
  flex: 0 0 auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
}

.feature-icon.app-store .store-badge-image,
.feature-icon.google-play .store-badge-image {
  width: 94px;
  max-height: 28px;
}

.app-badge-row {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.recommend-photo {
  height: 178px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  background-position: center;
  background-size: cover;
}

.michelin-photo {
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=560&q=80");
}

.pubs-photo {
  background-image: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=560&q=80");
}

.takeaway-photo {
  background-image: url("/assets/images/takeaway-favourites.webp");
}

.recommend-grid h3,
.how-grid h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.recommend-grid p,
.how-grid p,
.owner-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.recommend-list {
  margin-top: 14px;
}

.recommend-grid .recommend-guide-link {
  display: inline-block;
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top100-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: 250px;
  margin-top: 42px;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 67, 46, 0.32) 0 70px, transparent 72px),
    radial-gradient(circle at 92% 92%, rgba(132, 178, 72, 0.25) 0 86px, transparent 88px),
    linear-gradient(135deg, #1f1a17, #14100e);
  color: #fff;
  box-shadow: 0 22px 56px rgba(34, 25, 18, 0.16);
}

.top100-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.top100-copy .eyebrow {
  color: #ffc23d;
  margin-bottom: 12px;
}

.top100-banner h2 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.top100-banner p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.45;
}

.top100-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.top100-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top100-banner a {
  color: var(--charcoal);
}

.top100-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  background: #ffc23d;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(255, 194, 61, 0.22);
}

.top100-photo {
  position: relative;
  min-height: 190px;
  height: 100%;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 18%, rgba(255, 255, 255, 0.02) 66%),
    url("https://images.unsplash.com/photo-1543339308-43e59d6b73a6?auto=format&fit=crop&w=860&q=80") center/cover;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.top100-photo span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(20, 16, 14, 0.86);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.top100-page .section-heading {
  margin-bottom: 20px;
}

.top100-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.top100-sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -4px 0 18px;
}

.top100-sort span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top100-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.plate-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.plate-grid a {
  display: grid;
  gap: 8px;
  justify-items: center;
  border-radius: var(--radius);
  padding: 12px 8px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(34, 25, 18, 0.06);
  font-size: 0.75rem;
  font-weight: 900;
}

.plate {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.plate-one { background-image: url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=180&q=80"); }
.plate-two { background-image: url("https://images.unsplash.com/photo-1512058564366-18510be2db19?auto=format&fit=crop&w=180&q=80"); }
.plate-three { background-image: url("https://images.unsplash.com/photo-1604909052743-94e838986d24?auto=format&fit=crop&w=180&q=80"); }
.plate-four { background-image: url("https://images.unsplash.com/photo-1551183053-bf91a1d81141?auto=format&fit=crop&w=180&q=80"); }
.plate-five { background-image: url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=180&q=80"); }
.plate-six { background-image: url("https://images.unsplash.com/photo-1565299507177-b0ac66763828?auto=format&fit=crop&w=180&q=80"); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.how-grid article {
  border: 1px solid var(--line);
  border-top: 4px solid var(--tomato);
  border-radius: var(--radius);
  padding: 16px;
  background: white;
  box-shadow: 0 12px 40px rgba(34, 25, 18, 0.06);
}

.how-grid span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--maize);
  color: var(--charcoal);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.city-grid a {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  border-radius: var(--radius);
  padding: 46px 8px 8px;
  background: #456;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.city-grid span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)), url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=260&q=80") center/cover;
  z-index: -1;
}

.owner-panel {
  padding: 42px 0;
}

.owner-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.owner-card {
  display: grid;
  grid-template-columns: 395px 1fr;
  gap: 26px;
  align-items: center;
}

.owner-photo {
  min-height: 250px;
  border-radius: var(--radius);
  background: url("/assets/images/restaurant-owner-manager.webp") center/cover;
}

.owner-card h3 {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 6px 0 24px;
  padding: 0 12px;
  border: 1px solid var(--tomato);
  border-radius: var(--radius);
  background: #fff;
  color: var(--tomato);
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 24px;
  background: #0e0d0c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  padding: 42px 0;
}

.footer-grid div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-grid strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-grid a,
.footer-link-button,
.footer-grid p {
  color: #d6e1e3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-grid a,
.footer-link-button {
  width: max-content;
  max-width: 100%;
}

.footer-grid a:hover,
.footer-link-button:hover {
  color: #ffc23d;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-brand p {
  max-width: 26ch;
  margin: 0;
}

.legal-page {
  padding: 54px 0 62px;
}

.legal-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.legal-heading h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.legal-heading p:not(.eyebrow) {
  color: #4d5557;
  font-size: 1rem;
  line-height: 1.55;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.legal-content section {
  border-top: 1px solid rgba(14, 13, 12, 0.12);
  padding-top: 20px;
}

.legal-content h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.legal-content p {
  margin: 0;
  color: #4d5557;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(14, 13, 12, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 13, 12, 0.22);
}

.cookie-banner h2 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.cookie-banner p {
  margin: 0;
  color: #4d5557;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--tomato);
  border-radius: 8px;
  background: var(--tomato);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-button.secondary {
  background: #fff;
  color: var(--tomato);
}

@media (max-width: 880px) {
  .hero-band .hero {
    display: block;
    min-height: 330px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy > h1,
  .hero-copy > .search-row,
  .hero-copy > .service-tabs,
  .hero-copy > .hero-results,
  .hero-map-panel {
    grid-column: 1;
  }

  .hero-map-panel {
    grid-row: auto;
    margin-top: 14px;
    padding: 10px;
  }

  .hero-map-heading {
    display: grid;
  }

  .hero-map-heading span {
    max-width: none;
  }

  .hero-food {
    display: none;
  }

  .search-row {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .hero-results-head,
  .hero-result-item {
    font-size: 0.74rem;
  }

  .location-pill {
    min-height: 38px;
    border-right: 0;
    border-bottom: 1px solid #d7e0de;
  }

  .promo-banner,
  .offer-layout,
  .home-map-layout,
  .category-featured-card,
  .top100-banner,
  .owner-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-featured-media {
    min-height: 220px;
  }

  .category-featured-copy h3 {
    max-width: 22ch;
  }

  .hero-map-panel .home-map-layout {
    grid-template-columns: 1fr;
  }

  .home-map {
    min-height: 430px;
  }

  .hero-map-panel .home-map,
  .hero-map-panel .home-map.leaflet-container,
  .hero-map-panel .home-map .leaflet-container {
    min-height: 300px;
  }

  .home-map-list {
    max-height: 360px;
  }

  .top100-banner {
    gap: 18px;
  }

  .top100-photo {
    min-height: 160px;
    height: 160px;
  }

  .offer-layout .listing-grid,
  .listing-grid,
  .booked-grid,
  .recommend-grid,
  .guide-card-grid,
  .how-grid,
  .area-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .plate-grid,
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .hero-band {
    min-height: 300px;
  }

  .hero-band .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .home-map {
    min-height: 360px;
  }

  .home-map-pins {
    inset: 16px;
  }

  .home-map-pin {
    width: 12px;
    height: 12px;
  }

  .home-map-label {
    font-size: 0.62rem;
  }

  .offer-layout .listing-grid,
  .listing-grid,
  .booked-grid,
  .recommend-grid,
  .guide-card-grid,
  .how-grid,
  .plate-grid,
  .city-grid,
  .more-info-grid,
  .area-card-grid {
    grid-template-columns: 1fr;
  }

  .top-picks-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-featured-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .category-featured-photo,
  .category-featured-photo.secondary {
    min-height: 180px;
  }

  .category-featured-rating {
    position: static;
    width: max-content;
  }

  .review-media-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .top-pick-image a {
    gap: 0.55rem;
    padding: 0.75rem;
  }

  .top-pick-image strong {
    font-size: clamp(1rem, 5.2vw, 1.35rem);
  }

  .top-pick-chip {
    padding: 0.35rem 0.55rem;
    font-size: 0.68rem;
  }

  .top-pick-info {
    padding: 0.75rem;
    gap: 0.55rem;
  }

  .top-pick-info h3 {
    max-width: 10ch;
    font-size: clamp(1rem, 5.2vw, 1.28rem);
  }

  .top-pick-info span {
    font-size: 0.7rem;
    line-height: 1.24;
  }

  .top-pick-info a {
    padding: 0.45rem 0.62rem;
    font-size: 0.7rem;
  }

  .review-text-tile {
    padding: 0.75rem;
    gap: 0.45rem;
  }

  .review-text-tile .review-author,
  .review-text-tile strong {
    font-size: 0.78rem;
  }

  .review-text-tile p {
    font-size: 0.68rem;
    line-height: 1.25;
    -webkit-line-clamp: 4;
  }

  .review-text-tile .review-read-more {
    padding: 0.42rem 0.58rem;
    font-size: 0.68rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1;
  }
}
