@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --rosewater: #dc8a78;
  --flamingo: #dd7878;
  --pink: #ea76cb;
  --mauve: #8839ef;
  --red: #d20f39;
  --maroon: #e64553;
  --peach: #f07c2f;
  --yellow: #df8e1d;
  --green: #40a02b;
  --teal: #179299;
  --sky: #04a5e5;
  --sapphire: #209fb5;
  --blue: #1e66f5;
  --lavender: #7287fd;
  --text: #4c4f69;
  --subtext1: #5c5f77;
  --subtext0: #6c6f85;
  --overlay2: #7c7f93;
  --overlay1: #8c8fa1;
  --overlay0: #9ca0b0;
  --surface2: #acb0be;
  --surface1: #bcc0cc;
  --surface0: #ccd0da;
  --base: #eff1f5;
  --mantle: #e6e9ef;
  --crust: #dce0e8;
  --shadow: rgba(34, 37, 46, 0.12);
  --heading: #303342;
  --sand: #f6efe6;
  --foam: #f9f4ee;
  --sea: #1b6b7a;
  --driftwood: #d18a5f;
  --sunset: #f07c2f;
  --directory-card-image-height: 220px;
  --directory-card-mobile-image-height: 210px;
  --directory-card-body-padding: 8px 14px 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.is-lightbox-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

body.is-header-menu-open {
  overflow: hidden;
}

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

.page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  position: relative;
  z-index: 100;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  height: 1px;
  background: rgba(27, 107, 122, 0.14);
  z-index: 2;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fffaf4;
  z-index: -1;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--sunset);
  display: inline-flex;
  align-items: center;
}

.logo::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-radius: 999px;
  background: var(--sea);
  box-shadow: 14px 0 0 #f2b35f;
}

.logo.has-logo-image::after {
  display: none;
}

.logo-image {
  display: block;
  width: auto;
  height: clamp(44px, 4vw, 52px);
  max-width: min(330px, calc(100vw - 48px));
  object-fit: contain;
}

.tagline {
  font-size: 14px;
  color: var(--subtext0);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(27, 107, 122, 0.12);
  border-radius: 10px;
  background: #f9fbfa;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--subtext1);
  line-height: 1;
}

.nav-link.is-active,
.nav-link:hover {
  background: #ffffff;
  color: var(--heading);
  box-shadow: 0 6px 18px rgba(34, 37, 46, 0.08);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  width: min(420px, 42vw);
  min-width: 280px;
  padding: 4px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 37, 46, 0.045);
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 2px 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.header-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 5px 14px rgba(34, 37, 46, 0.055), inset 0 0 0 1px var(--blue);
}

.header-search input::placeholder {
  color: var(--overlay2);
}

.header-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  border-radius: 999px;
  background: var(--sunset);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(240, 124, 47, 0.18);
}

.header-search-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  position: relative;
  z-index: 4;
}

.header-nav-link,
.header-nav-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.header-nav-link:hover,
.header-nav-link:focus-visible,
.header-nav-dropdown[open] > .header-nav-summary,
.header-nav-summary:hover,
.header-nav-summary:focus-visible {
  background: #ffffff;
  color: var(--heading);
  box-shadow: 0 5px 14px rgba(34, 37, 46, 0.07);
  outline: 0;
}

.header-nav-link.is-active,
.header-nav-dropdown.is-active > .header-nav-summary {
  background: transparent;
  color: var(--heading);
}

.header-nav-link.is-active,
.header-nav-dropdown.is-active > .header-nav-summary span {
  text-decoration-line: underline;
  text-decoration-color: rgba(240, 124, 47, 0.9);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.header-nav-dropdown {
  position: relative;
}

.header-nav-dropdown > summary {
  list-style: none;
}

.header-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.header-nav-chevron {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.16s ease;
}

.header-nav-dropdown[open] .header-nav-chevron {
  transform: rotate(180deg);
}

.header-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 45;
  min-width: 300px;
  padding: 10px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(34, 37, 46, 0.13);
}

.header-cuisine-panel {
  width: min(430px, calc(100vw - 48px));
}

.header-guides-panel {
  width: 300px;
}

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

.header-menu-list {
  display: grid;
  gap: 4px;
}

.header-menu-link {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.header-menu-link:hover,
.header-menu-link:focus-visible {
  background: #fff8f1;
  color: var(--heading);
  outline: 0;
}

.header-menu-link.is-active {
  background: transparent;
  color: var(--sunset);
}

.header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--heading);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(34, 37, 46, 0.04);
}

.header-menu-toggle:hover,
.header-menu-toggle:focus-visible,
.header-menu-toggle[aria-expanded="true"] {
  border-color: rgba(30, 102, 245, 0.35);
  color: var(--heading);
  box-shadow: 0 4px 12px rgba(34, 37, 46, 0.055), inset 0 0 0 1px rgba(30, 102, 245, 0.35);
  outline: 0;
}

.header-menu-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(34, 37, 46, 0.28);
  opacity: 1;
}

.header-mobile-overlay[hidden],
.header-mobile-panel[hidden] {
  display: none;
}

.header-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(92vw, 390px);
  height: 100dvh;
  padding: 18px 16px 22px;
  overflow-y: auto;
  border-left: 1px solid rgba(27, 107, 122, 0.16);
  background: #fffaf4;
  box-shadow: -24px 0 48px rgba(34, 37, 46, 0.18);
}

.site-header.mobile-menu-left .header-mobile-panel {
  right: auto;
  left: 0;
  border-right: 1px solid rgba(27, 107, 122, 0.16);
  border-left: 0;
  box-shadow: 24px 0 48px rgba(34, 37, 46, 0.18);
}

.header-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 107, 122, 0.12);
}

.header-mobile-head strong {
  color: var(--heading);
  font-size: 19px;
  line-height: 1;
}

.header-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--heading);
  cursor: pointer;
}

.header-mobile-close:hover,
.header-mobile-close:focus-visible {
  border-color: rgba(30, 102, 245, 0.35);
  box-shadow: inset 0 0 0 1px rgba(30, 102, 245, 0.35);
  outline: 0;
}

.header-mobile-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-mobile-section {
  padding: 16px 0;
  border-bottom: 1px solid rgba(27, 107, 122, 0.1);
}

.header-mobile-section + .header-mobile-section {
  margin-top: 0;
}

.header-mobile-section-title {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-mobile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 10px;
}

.header-mobile-links.is-simple {
  grid-template-columns: 1fr;
}

.header-mobile-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 9px;
  border-radius: 7px;
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.header-mobile-link:hover,
.header-mobile-link:focus-visible {
  background: #fff8f1;
  color: var(--heading);
  outline: 0;
}

.header-mobile-link.is-active {
  background: transparent;
  color: var(--sunset);
}

.cta {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sunset), var(--peach));
  color: white;
  font-weight: 600;
}

.cta.icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 124, 47, 0.34);
  border-radius: 999px;
  background: var(--sunset);
  box-shadow: 0 10px 22px rgba(240, 124, 47, 0.22);
}

.cta.icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content h1 {
  font-family: "Playfair Display", "Fraunces", serif;
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 10px 0 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--heading);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--overlay2);
}

.lead {
  font-size: 18px;
  color: var(--subtext1);
  max-width: 520px;
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.search-bar input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(240, 124, 47, 0.25);
  background: white;
  color: var(--text);
  color: var(--text);
  font-size: 15px;
}

.search-bar button {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: var(--sunset);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.search-bar input:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.header-search-button:focus-visible,
.search-bar button:focus-visible,
.btn:focus-visible {
  outline: 1px solid rgba(27, 107, 122, 0.45);
  outline-offset: 2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--sunset);
  color: white;
  font-weight: 600;
  font: inherit;
  line-height: 1.2;
  border: none;
  cursor: pointer;
}

.btn.has-icon {
  gap: 8px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn.ghost {
  background: linear-gradient(180deg, #f6f0e8 0%, #ffffff 100%);
  border: 1px solid rgba(240, 124, 47, 0.35);
  color: var(--text);
}

.hero-card {
  background: white;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 20px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transform: rotate(-0.8deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(240, 124, 47, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
}

.badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(240, 124, 47, 0.16);
  color: var(--peach);
  font-size: 12px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
}

.card-meta {
  color: var(--subtext0);
  font-size: 14px;
}

.card-body {
  color: var(--subtext1);
}

.text-link {
  color: var(--peach);
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.section.alt {
  background: rgba(255, 245, 235, 0.9);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid rgba(240, 124, 47, 0.22);
}

.section.highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: white;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid rgba(240, 124, 47, 0.22);
}

.section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  position: relative;
  color: var(--heading);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--sunset);
  margin-top: 8px;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--subtext1);
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.chip {
  background: white;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid rgba(240, 124, 47, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 90px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip small {
  color: var(--overlay2);
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.post-card,
.rich-card,
.form-card,
.result-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(240, 124, 47, 0.2);
  box-shadow: 0 12px 30px var(--shadow);
  position: relative;
}

.legal-card {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
}

.legal-card h2,
.legal-card p {
  margin: 0;
}

.legal-card h2 {
  margin-top: 8px;
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--heading);
}

.legal-updated {
  color: var(--overlay2);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.page-hero.contact-hero {
  display: block;
}

.page-hero.contact-hero > div:first-child,
.contact-hero .lead {
  max-width: none;
}

.contact-panel,
.contact-sidebar {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.contact-sidebar {
  padding-top: 0;
}

.contact-guide {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.contact-guide-list {
  display: grid;
}

.contact-guide-item {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(27, 107, 122, 0.1);
}

.contact-guide-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-guide-item:last-child {
  padding-bottom: 0;
}

.contact-guide-marker {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--sunset);
}

.contact-guide-item h3 {
  margin: 0 0 5px;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.25;
}

.contact-panel h2,
.contact-panel p,
.contact-guide h2,
.contact-sidebar p {
  margin: 0;
}

.contact-panel h2,
.contact-guide h2 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--heading);
}

.contact-intro,
.contact-sidebar p {
  color: var(--subtext1);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label,
.contact-form .form-field {
  display: grid;
  gap: 5px;
  font-weight: 650;
  color: var(--text);
  font-size: 14px;
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(27, 107, 122, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  box-shadow: none;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-message-actions {
  display: grid;
  gap: 8px;
}

.contact-form-actions {
  display: grid;
  gap: 8px;
}

.contact-form-actions .contact-turnstile {
  margin: 0;
}

.contact-form-actions .btn {
  width: 100%;
}

.field-label {
  display: block;
}

.are-menu {
  position: relative;
  min-width: 0;
}

.are-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(27, 107, 122, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.are-menu-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--overlay2);
}

.are-menu-trigger:focus-visible,
.are-menu.is-open .are-menu-trigger {
  border-color: var(--blue);
  outline: 0;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.are-menu-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 260px;
  overflow: auto;
  padding: 5px;
  border: 1px solid rgba(27, 107, 122, 0.18);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(34, 37, 46, 0.16);
}

.are-menu.is-open .are-menu-list {
  display: grid;
  gap: 2px;
}

.are-menu-list button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.are-menu-list button:hover,
.are-menu-list button:focus-visible {
  background: #f6faf9;
  color: var(--text);
  outline: 0;
}

.are-menu-list button[aria-selected="true"] {
  background: #f1f3f5;
  color: var(--text);
  box-shadow: none;
}

.contact-form input:not([type="hidden"]):focus,
.contact-form textarea:focus,
.claim-form input:not([type="hidden"]):not([type="checkbox"]):focus,
.claim-form textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.contact-turnstile {
  width: 100%;
  height: 65px;
  min-height: 65px;
  margin: 5px 0;
  padding: 0;
  overflow: hidden;
}

.contact-turnstile .cf-turnstile {
  min-height: 65px;
}

.claim-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.page-hero.claim-hero {
  display: block;
}

.page-hero.claim-hero > div:first-child,
.claim-hero .lead {
  max-width: none;
}

.claim-panel,
.claim-summary {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.claim-panel h2,
.claim-panel p,
.claim-summary h2,
.claim-summary p {
  margin: 0;
}

.claim-panel h2,
.claim-summary h2 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--heading);
}

.claim-intro,
.claim-summary p {
  color: var(--subtext1);
  line-height: 1.5;
}

.claim-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.claim-form label,
.claim-form .form-field {
  display: grid;
  gap: 5px;
  font-weight: 650;
  color: var(--text);
  font-size: 14px;
}

.claim-form input:not([type="hidden"]):not([type="checkbox"]),
.claim-form textarea {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(27, 107, 122, 0.2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  box-shadow: none;
}

.claim-form textarea {
  min-height: 120px;
  resize: vertical;
}

.claim-form-wide {
  grid-column: 1 / -1;
}

.claim-message-actions {
  display: grid;
  gap: 10px;
}

.claim-form-actions {
  display: grid;
  gap: 8px;
}

.claim-form-actions .contact-turnstile {
  margin: 0;
}

.claim-form-actions .btn {
  width: 100%;
}

.claim-checkbox {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.35;
  width: 100%;
  min-height: 22px;
  padding: 0;
  cursor: pointer;
}

.claim-checkbox input {
  width: 16px;
  height: 16px;
  min-height: 0;
  flex: 0 0 16px;
  margin: 0;
  padding: 0;
  border-radius: 3px;
  accent-color: var(--sunset);
  cursor: pointer;
}

.claim-form .claim-checkbox input:focus,
.claim-form .claim-checkbox input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.claim-checkbox span {
  min-width: 0;
  white-space: nowrap;
}

.claim-form .claim-checkbox {
  display: flex;
}

.claim-form button {
  cursor: pointer;
}

.claim-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(27, 107, 122, 0.18);
  background: #f9fbfa;
}

.notice h2,
.notice p {
  margin: 0;
}

.notice.success {
  border-color: rgba(27, 107, 122, 0.18);
  background: rgba(27, 107, 122, 0.07);
}

.notice.error {
  border-color: rgba(166, 95, 60, 0.25);
  background: rgba(255, 247, 239, 0.9);
  color: #8b3f24;
}

.admin-hero {
  margin-bottom: 22px;
}

.admin-section {
  display: grid;
  gap: 18px;
}

.admin-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-search-bar input {
  width: 100%;
  border: 1px solid rgba(27, 107, 122, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.admin-search-bar input {
  min-height: 46px;
  padding: 0 13px;
}

.admin-search-bar input:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.admin-result-list {
  display: grid;
  gap: 8px;
}

.admin-result-row {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(27, 107, 122, 0.12);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
}

.admin-result-row:hover {
  border-color: rgba(240, 124, 47, 0.28);
  background: rgba(255, 247, 239, 0.62);
}

.admin-result-row span {
  color: var(--subtext1);
  font-size: 14px;
}

.admin-selected-place,
.admin-photo-order-head,
.admin-photo-order-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-selected-place {
  padding: 16px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: #fff;
}

.admin-selected-place-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-selected-place h2,
.admin-selected-place p,
.admin-photo-order-head p {
  margin: 0;
}

.admin-selected-place h2 {
  margin-top: 3px;
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--heading);
}

.admin-photo-order-form {
  display: grid;
  gap: 16px;
}

.admin-photo-upload-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: #fff;
}

.admin-photo-upload-copy {
  display: grid;
  gap: 4px;
}

.admin-photo-upload-copy h3,
.admin-photo-upload-copy p {
  margin: 0;
}

.admin-photo-upload-copy h3 {
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1.12;
}

.admin-photo-upload-copy p {
  max-width: 620px;
  color: var(--subtext1);
  font-size: 14px;
  line-height: 1.45;
}

.admin-photo-upload-field {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.admin-photo-upload-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px;
  border: 1px solid rgba(27, 107, 122, 0.18);
  border-radius: 6px;
  background: #f9fbfa;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.admin-photo-upload-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(47, 112, 226, 0.18);
  outline: 0;
}

.admin-photo-order-head {
  padding: 0 1px;
}

.admin-photo-order-head p {
  color: var(--subtext1);
  font-size: 14px;
  line-height: 1.45;
}

.admin-photo-order-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.admin-photo-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(27, 107, 122, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26, 44, 47, 0.06);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  user-select: none;
}

.admin-photo-card.is-primary {
  border-color: rgba(240, 124, 47, 0.36);
}

.admin-photo-card.is-sortable-chosen {
  border-color: rgba(47, 112, 226, 0.55);
  box-shadow: 0 18px 38px rgba(26, 44, 47, 0.18);
  transition: none;
}

.admin-photo-drag-placeholder {
  min-width: 0;
  border: 1px dashed rgba(47, 112, 226, 0.6);
  border-radius: 6px;
  background: rgba(47, 112, 226, 0.06);
}

html.is-admin-photo-sorting,
html.is-admin-photo-sorting body,
html.is-admin-photo-sorting * {
  cursor: grabbing !important;
}

.admin-photo-media {
  position: relative;
  background: rgba(27, 107, 122, 0.05);
  cursor: grab;
  touch-action: none;
}

.admin-photo-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #303342;
  font-weight: 800;
}

.admin-photo-rank span {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(26, 44, 47, 0.12);
  color: var(--sea);
  font-size: 14px;
}

.admin-photo-rank small {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.94);
  box-shadow: 0 6px 16px rgba(26, 44, 47, 0.1);
  color: var(--sunset);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-photo-drag-handle {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(26, 44, 47, 0.12);
  color: var(--sea);
  cursor: grab;
  touch-action: none;
}

.admin-photo-drag-handle:hover,
.admin-photo-drag-handle:focus-visible {
  border-color: rgba(47, 112, 226, 0.32);
  color: var(--blue);
  outline: 0;
}

.admin-photo-drag-handle svg,
.admin-photo-actions svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-photo-drag-handle svg {
  fill: currentColor;
  stroke: none;
}

.admin-photo-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: rgba(27, 107, 122, 0.05);
  object-fit: cover;
  -webkit-user-drag: none;
}

.admin-photo-thumb.is-empty {
  border: 1px dashed rgba(27, 107, 122, 0.22);
}

.admin-photo-body {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 10px 11px 12px;
}

.admin-photo-body p {
  margin: 0;
  color: var(--subtext1);
  font-size: 13px;
}

.admin-photo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.admin-photo-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid rgba(27, 107, 122, 0.16);
  border-radius: 5px;
  background: #f9fbfa;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.admin-photo-actions button:hover {
  border-color: rgba(240, 124, 47, 0.28);
  background: rgba(255, 247, 239, 0.78);
}

.admin-photo-actions button:disabled {
  opacity: 0.48;
  cursor: default;
}

.admin-photo-actions button:disabled:hover {
  border-color: rgba(27, 107, 122, 0.16);
  background: #f9fbfa;
}

.admin-profile-link {
  white-space: nowrap;
}

.directory-toolbar {
  position: relative;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 16px;
}

.directory-results-count {
  margin: 0;
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
}

.directory-toolbar-main {
  display: grid;
  align-items: start;
  gap: 5px;
}

.directory-map-toggle {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  width: auto;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #303342;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.directory-map-toggle:hover,
.directory-map-toggle:focus-visible {
  color: #5a524c;
}

.directory-map-toggle:focus-visible {
  outline: 2px solid rgba(51, 153, 255, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

.directory-map-toggle-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  stroke-width: 2.1;
}

.directory-active-filters {
  display: flex;
  flex: 1 0 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.directory-filter-chip,
.directory-filter-clear-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.directory-filter-chip {
  gap: 8px;
  padding: 0 8px 0 13px;
  border: 1px solid rgba(48, 51, 66, 0.48);
  background: #fff;
  color: #303342;
  box-shadow: 0 2px 8px rgba(34, 37, 46, 0.04);
}

.directory-filter-chip:hover,
.directory-filter-chip:focus-visible {
  border-color: rgba(48, 51, 66, 0.7);
  color: #202331;
  box-shadow: 0 4px 12px rgba(34, 37, 46, 0.08);
  outline: 0;
}

.directory-filter-chip-x {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(51, 153, 255, 0.13);
  color: #237fda;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.directory-filter-clear-all {
  padding: 0 4px;
  color: var(--heading);
  font-size: 14px;
}

.directory-filter-clear-all:hover,
.directory-filter-clear-all:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: 0;
}

.directory-toolbar-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.directory-empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(27, 107, 122, 0.12);
  color: var(--subtext1);
  text-align: center;
}

.directory-empty-state p {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.directory-empty-state .text-link {
  color: var(--sunset);
  font-weight: 750;
  text-underline-offset: 3px;
}

.directory-empty-state .text-link:hover,
.directory-empty-state .text-link:focus-visible {
  color: #d96520;
}

.directory-map-area {
  display: grid;
  gap: 3px;
  margin: 0;
}

.directory-map-area.is-map-open {
  margin-bottom: 6px;
}

.directory-map-panel {
  display: grid;
  gap: 10px;
  margin: 0;
}

.directory-map-panel[hidden] {
  display: none;
}

.directory-sort-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--subtext1);
  font-size: 13px;
  font-weight: 700;
}

.directory-sort-label {
  flex: 0 0 auto;
}

.directory-sort-menu {
  min-width: 160px;
}

.guide-results-section .directory-sort-menu {
  min-width: 210px;
}

.directory-sort-menu .are-menu-trigger {
  min-height: 40px;
  padding: 8px 12px;
  border-color: rgba(27, 107, 122, 0.16);
  font-size: 14px;
  font-weight: 700;
}

.directory-sort-menu .are-menu-list {
  z-index: 36;
}

.directory-filters-panel {
  position: relative;
}

.directory-filters-panel summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(27, 107, 122, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.directory-filters-panel summary::-webkit-details-marker {
  display: none;
}

.directory-filter-icon {
  width: 17px;
  height: 17px;
  color: var(--sea);
  stroke-width: 2;
}

.directory-filters-panel summary strong {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  border: 1px solid #3399FF;
  background: #3399FF;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.directory-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: default;
}

body.directory-filters-open {
  overflow: hidden;
}

.directory-filter-overlay.is-visible {
  display: block;
  background: rgba(24, 28, 32, 0.36);
}

.directory-filters-form {
  position: fixed;
  inset: 24px 0;
  z-index: 1210;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px 16px;
  width: min(760px, calc(100vw - 48px));
  height: max-content;
  max-height: min(78dvh, 650px);
  margin: auto;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(27, 107, 122, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(34, 37, 46, 0.16);
}

.directory-filter-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.directory-filter-head strong {
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: 20px;
  line-height: 1.1;
}

.directory-filter-head button,
.directory-filter-close {
  border: 0;
  background: transparent;
  color: var(--subtext1);
  cursor: pointer;
}

.directory-filter-head button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 24px;
  line-height: 1;
}

.directory-filters-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.directory-filter-field-cuisine {
  grid-column: 1 / -1;
}

.directory-filters-form legend {
  margin-bottom: 7px;
  color: var(--sea);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.directory-filter-options {
  display: grid;
  gap: 7px;
}

.directory-filter-options.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.directory-filter-options.is-cuisine {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px 12px;
}

.directory-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.directory-filter-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #3399FF;
  cursor: pointer;
}

.directory-filter-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(27, 107, 122, 0.28);
  border-radius: 3px;
  background: #fff;
}

.directory-filter-option input[type="checkbox"]:checked {
  border-color: #3399FF;
  background-color: #3399FF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
}

.directory-filter-option input[type="checkbox"]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(27, 107, 122, 0.18);
}

.directory-filter-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 107, 122, 0.12);
}

.directory-filter-actions a,
.directory-filter-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.directory-filter-actions a {
  margin-right: auto;
  color: var(--sea);
}

.directory-filter-actions button {
  border: 1px solid rgba(27, 107, 122, 0.16);
  padding: 0 14px;
  background: #fff;
  color: var(--text);
}

.directory-filter-actions button[type="submit"] {
  border-color: transparent;
  background: var(--sunset);
  color: #fff;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-card.compact {
  display: grid;
  grid-template-columns: minmax(292px, 340px) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(27, 107, 122, 0.12);
  box-shadow: 0 10px 24px rgba(28, 36, 38, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.result-card.compact:hover {
  border-color: rgba(240, 124, 47, 0.24);
  box-shadow: 0 14px 30px rgba(28, 36, 38, 0.1);
}

.result-card.compact .result-photo {
  height: var(--directory-card-image-height);
  min-height: 0;
  border: 0;
  border-radius: 0;
  object-position: center;
}

.result-photo-link {
  display: block;
  height: var(--directory-card-image-height);
  min-height: 0;
  color: inherit;
  text-decoration: none;
  background: rgba(27, 107, 122, 0.05);
  overflow: hidden;
}

.result-photo-link .result-photo {
  display: block;
}

.result-card.compact .result-body {
  gap: 5px;
  padding: var(--directory-card-body-padding);
}

.result-photo-link:focus-visible {
  outline: 3px solid rgba(27, 107, 122, 0.28);
  outline-offset: 3px;
}

.result-photo.placeholder {
  background: linear-gradient(135deg, rgba(240, 124, 47, 0.08), rgba(27, 107, 122, 0.08));
  border: 1px dashed rgba(240, 124, 47, 0.2);
}

.result-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 16px 14px;
}

.result-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-title h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1.12;
}

.result-title-link {
  color: inherit;
  text-decoration: none;
}

.result-title-link:hover {
  color: var(--peach);
}

.rating-pill {
  background: rgba(27, 107, 122, 0.12);
  color: var(--sea);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.result-rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: var(--subtext1);
  font-size: 13px;
  line-height: 1.2;
}

.result-rating-score {
  color: var(--heading);
  font-weight: 700;
}

.result-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: var(--sunset);
}

.result-star {
  display: inline-flex;
}

.result-star svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.result-star.is-empty {
  color: var(--surface1);
}

.result-star.is-half {
  opacity: 0.72;
}

.result-review-count {
  color: var(--subtext1);
}

.result-meta {
  margin: 0;
  color: var(--subtext1);
  font-size: 14px;
  line-height: 1.35;
}

.result-guide-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #303342;
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.25;
}

.result-guide-note-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: #237fda;
  stroke-width: 2;
}

.result-detail-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  color: #36424a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.result-cuisine-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
}

.result-cuisine-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.result-cuisine-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--sea);
  stroke-width: 2;
}

.result-detail-sep,
.result-price-label {
  color: var(--subtext1);
}

.result-hours-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
  font-size: 13.5px;
  line-height: 1.25;
}

.result-hours-line.is-open {
  color: #2f7d32;
}

.result-hours-line.is-closed {
  color: var(--red);
}

.result-hours-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 1px;
  stroke-width: 2;
}

.result-hours-label,
.result-hours-next {
  padding-top: 1px;
}

.result-hours-label {
  font-weight: 700;
}

.result-hours-next {
  color: var(--subtext1);
}

.result-feature-block {
  display: grid;
  gap: 5px;
  margin-top: 1px;
}

.result-feature-label {
  color: var(--overlay2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.result-chip-list,
.result-amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-chip-list li,
.result-amenity-list li {
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: #f9fbfa;
  color: #36424a;
  font-size: 12.5px;
  line-height: 1.2;
  padding: 5px 8px;
}

.result-amenity-list {
  margin-top: 2px;
}

.result-amenity-list li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-color: rgba(240, 124, 47, 0.18);
  background: rgba(255, 247, 239, 0.72);
  color: var(--subtext1);
}

.result-amenity-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.result-body .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.result-card.compact::after {
  display: none;
}

.results-ad {
  margin: 6px 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(240, 124, 47, 0.18);
  box-shadow: 0 12px 30px var(--shadow);
}

.page-indicator {
  color: var(--subtext1);
  font-size: 14px;
}

.post-card::after,
.rich-card::after,
.form-card::after,
.result-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(240, 124, 47, 0.25);
  border-radius: 6px;
  pointer-events: none;
}

.result-photo {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(240, 124, 47, 0.2);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.place-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.place-meta {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.place-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 12px 30px var(--shadow);
}

.place-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 12px;
}

.directory-shell {
  padding-top: 12px;
}

.place-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--overlay2);
}

.crumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.crumb-link.is-current {
  color: var(--text);
  font-weight: 600;
}

.crumb-icon {
  display: inline-flex;
  align-items: center;
}

.crumb-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
}

.crumb-icon svg.lucide {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.crumb-sep {
  display: inline-flex;
  align-items: center;
}

.crumb-sep svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: 0.6;
}

.place-breadcrumbs a:hover {
  color: var(--peach);
}

.place-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.place-header-main h1 {
  font-family: "Playfair Display", "Fraunces", serif;
  font-size: clamp(28px, 3vw, 44px);
  margin: 6px 0 10px;
  color: var(--heading);
}

.place-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.rating-score {
  background: var(--sunset);
  color: white;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
}

.star {
  display: inline-flex;
}

.star svg {
  width: 16px;
  height: 16px;
  fill: var(--surface2);
}

.star.is-filled svg,
.star.is-half svg {
  fill: var(--sunset);
}

.rating-count {
  color: var(--subtext1);
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  color: var(--sunset);
  font-size: 12px;
  font-weight: 600;
}

.place-address {
  margin: 0;
  color: var(--subtext1);
}

.place-address-line,
.place-phone-line,
.place-website-line {
  margin: 4px 0 12px;
  color: var(--subtext1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.place-phone-line,
.place-website-line {
  margin-top: 0;
}

.phone-link {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
}

.place-website-favicon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  object-fit: contain;
}

.website-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

.website-link:hover,
.website-link:focus-visible {
  color: var(--sea);
}

.external-link-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.address-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  color: var(--peach);
}

.address-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.place-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.place-actions.is-stack {
  flex-direction: column;
  margin-top: 14px;
}

.place-actions.is-stack .btn {
  width: 100%;
}

.map-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-actions .btn {
  width: 100%;
  justify-content: center;
}

.profile-share-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-share-card .btn {
  width: 100%;
  justify-content: center;
}

.btn.share-profile-button {
  min-height: 48px;
  background: #3399FF;
  border: none;
  color: white;
  box-shadow: 0 4px 10px rgba(34, 37, 46, 0.08);
}

.btn.share-profile-button:hover {
  background: #238cf0;
}

.btn.share-profile-button .btn-icon {
  color: white;
}

.share-profile-status {
  min-height: 0;
  margin: 0;
  color: #237fda;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.share-profile-status:empty {
  display: none;
}

.place-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 8px;
  position: relative;
}

.place-gallery-section {
  margin: 0;
}

.place-photo-tile {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 124, 47, 0.12);
  box-shadow: 0 6px 16px rgba(34, 37, 46, 0.08);
  margin: 0;
}

.place-photo-tile.is-main {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  border-radius: 12px 0 0 12px;
}

.place-photo-tile:nth-child(3) {
  border-radius: 0 12px 0 0;
}

.place-photo-tile:nth-child(5) {
  border-radius: 0 0 12px 0;
}

.place-gallery-more {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #3399FF;
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 8px 16px rgba(51, 153, 255, 0.3);
  border: none;
  cursor: pointer;
}

.place-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.place-main {
  display: grid;
  gap: 20px;
}

.place-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.place-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(240, 124, 47, 0.2);
  box-shadow: 0 12px 30px var(--shadow);
}

.place-main .place-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.place-aside .place-card {
  background: transparent;
  border: 1px solid rgba(240, 124, 47, 0.25);
  box-shadow: none;
}

.claim-profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 6px;
  background: #f9fbfa;
}

.claim-profile-card p {
  margin: 0;
  color: var(--subtext1);
  font-size: 14px;
}

.claim-profile-card a {
  color: var(--sea);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.place-card h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  color: var(--heading);
}

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

.detail-item-wide {
  grid-column: 1 / -1;
}

.detail-grid h3 {
  margin: 0 0 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--overlay2);
}

.profile-detail-line,
.profile-cuisine-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  min-height: 24px;
  margin-top: 1px;
}

.profile-detail-line {
  gap: 6px;
}

.profile-detail-empty {
  display: flex;
  align-items: center;
  min-height: 24px;
  margin: 1px 0 0;
  color: var(--subtext1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.profile-detail-empty.is-amenity-empty {
  min-height: 34px;
  margin-top: 0;
}

.profile-detail-primary {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.profile-detail-line .price-descriptor {
  margin-left: 0;
}

.profile-cuisine-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
}

.profile-cuisine-link {
  text-decoration: none;
}

.profile-cuisine-link:hover,
.profile-cuisine-link:focus-visible {
  color: var(--sea);
  outline: 0;
}

.profile-detail-icon,
.profile-cuisine-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--sea);
  stroke-width: 2;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid rgba(27, 107, 122, 0.16);
  border-radius: 6px;
  background: rgba(249, 244, 238, 0.78);
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
}

.amenity-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--sea);
}

.dish-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.dish-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.dish-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(240, 124, 47, 0.12);
  color: var(--clay);
  font-weight: 800;
  font-size: 13px;
}

.dish-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--subtext1);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.place-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

@media (max-width: 900px) {
  .place-hero {
    grid-template-columns: 1fr;
  }

  .place-map iframe {
    height: 280px;
  }

  .place-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .place-photo-tile.is-main {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 10px;
  }

  .place-photo-tile,
  .place-photo-tile:nth-child(3),
  .place-photo-tile:nth-child(5) {
    border-radius: 10px;
  }

  .place-content {
    grid-template-columns: 1fr;
  }

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

  .dish-list {
    grid-template-columns: 1fr;
  }

  .dish-item {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .place-aside {
    position: static;
  }
}

.page-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.page-hero h1,
.page-hero h2 {
  color: var(--heading);
}

.page-hero > div:first-child {
  max-width: 720px;
  text-align: left;
}

.page-hero.search-hero {
  display: block;
}

.page-hero.search-hero > div:first-child {
  width: 100%;
  max-width: none;
}

.search-hero .lead {
  max-width: none;
  margin-bottom: 0;
}

.page-hero.directory-hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.page-hero.directory-hero > div:first-child {
  width: 100%;
  max-width: none;
}

.directory-hero-copy {
  width: 100%;
}

.directory-hero .lead {
  max-width: none;
  margin-bottom: 0;
}

.directory-hero .ad-slot {
  width: 100%;
  display: none;
}

.page-hero.directory-hero + .directory-results-section {
  margin-top: 8px;
}

.guide-content-section {
  display: grid;
  gap: 16px;
}

.guide-map-card {
  display: grid;
  gap: 12px;
}

.guide-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.guide-map-head h2,
.guide-map-head p {
  margin: 0;
}

.guide-map-head h2 {
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: 26px;
  line-height: 1.12;
}

.guide-map-head > p {
  color: var(--subtext1);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.guide-map,
.directory-map {
  isolation: isolate;
  min-height: 480px;
  border-radius: 8px;
  border: 1px solid rgba(27, 107, 122, 0.12);
  background: #f9fbfa;
  overflow: hidden;
}

.guide-map.is-unavailable,
.directory-map.is-unavailable {
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--subtext1);
  text-align: center;
}

.guide-map-marker {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #3399FF;
  box-shadow: 0 5px 13px rgba(28, 36, 38, 0.2);
}

.guide-map-popup {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  width: min(300px, calc(100vw - 72px));
}

.restaurant-map-popup .leaflet-popup-content {
  margin: 8px 10px;
}

.leaflet-popup-content .guide-map-popup {
  margin: 0;
}

.leaflet-popup-content .guide-map-popup strong,
.leaflet-popup-content .guide-map-popup p,
.leaflet-popup-content .guide-map-popup a {
  margin: 0;
}

.leaflet-popup-content .guide-map-popup-body {
  gap: 3px;
}

.guide-map-popup-image {
  display: block;
  width: 96px;
  flex: 0 0 96px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  background: #eef2f0;
}

.guide-map-popup-body {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.guide-map-popup strong,
.guide-map-popup p {
  margin: 0;
}

.guide-map-popup strong {
  display: block;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.08;
}

.leaflet-popup-content .guide-map-popup strong {
  line-height: 1.05;
}

.guide-map-popup p {
  color: var(--subtext1);
  font-size: 12px;
  line-height: 1.12;
}

.leaflet-popup-content .guide-map-popup p {
  line-height: 1.08;
}

.guide-map-popup a {
  display: inline-flex;
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.guide-map-popup a:hover {
  color: var(--text);
}

.guide-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.guide-results-section {
  scroll-margin-top: 18px;
}

.guide-results-head h2,
.guide-results-head p {
  margin: 0;
}

.guide-results-head h2 {
  color: var(--heading);
  font-family: "Fraunces", serif;
  font-size: 28px;
  line-height: 1.12;
}

.guide-results-link {
  flex: 0 0 auto;
  color: var(--sea);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.guide-results-link:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.result-card.is-map-selected {
  border-color: rgba(51, 153, 255, 0.45);
  box-shadow: 0 14px 30px rgba(51, 153, 255, 0.14);
}

.cuisine-hero {
  justify-content: space-between;
  align-items: flex-start;
}

.cuisine-hero .lead {
  margin-bottom: 0;
}

.form {
  display: grid;
  gap: 0;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--subtext1);
}

.form input,
.form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(240, 124, 47, 0.25);
  background: white;
  color: var(--text);
  font-size: 15px;
}

.ad-slot {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 16px;
  color: transparent;
  background: transparent;
  text-align: center;
  min-width: 180px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ad-slot span {
  visibility: hidden;
}

.adsense-slot {
  pointer-events: auto;
  color: inherit;
}

.ad-slot.is-collapsed {
  display: none;
  min-height: 0;
  padding: 0;
  border: 0;
}

.profile-aside-ad {
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.profile-aside-ad .adsbygoogle {
  display: block !important;
  min-height: 280px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
}

.profile-aside-ad .adsbygoogle[data-ad-status="filled"] {
  min-height: 280px;
  opacity: 1;
}

.profile-aside-ad iframe {
  border: 0 !important;
  background: transparent !important;
}

.profile-aside-ad .adsbygoogle[data-ad-status="unfilled"] {
  opacity: 0;
}

.home-page {
  display: grid;
  gap: 44px;
  padding-top: 12px;
}

.home-hero {
  display: block;
  min-height: 0;
  padding: 0 0 10px;
}

.home-hero-copy h1 {
  max-width: none;
  margin: 10px 0 14px;
  font-family: "Playfair Display", "Fraunces", serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 700;
  color: var(--heading);
}

.home-hero-copy .eyebrow {
  margin: 0;
}

.home-hero-copy .lead {
  max-width: none;
  font-size: 19px;
  line-height: 1.55;
}

.home-search {
  width: 100%;
  max-width: none;
  padding: 6px;
  border: 1px solid rgba(48, 51, 66, 0.28);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(34, 37, 46, 0.075);
}

.home-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(34, 37, 46, 0.075), inset 0 0 0 1px var(--blue);
}

.home-search input {
  border: 0;
  min-height: 50px;
}

.home-search input:focus {
  box-shadow: none;
}

.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  border-radius: 8px;
}

.home-search-button-icon {
  display: none;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-page-form {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.search-helper {
  margin: -6px 0 0;
  color: var(--subtext1);
  font-size: 15px;
}

.search-message {
  display: grid;
  gap: 8px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(27, 107, 122, 0.12);
  color: var(--subtext1);
}

.search-message p {
  margin: 0;
}

.home-actions {
  margin-top: 16px;
}

.home-browse-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #303342;
  font-size: 15px;
  font-weight: 750;
}

.home-browse-link span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-browse-link:hover,
.home-browse-link:focus-visible {
  color: #5a524c;
  outline: 0;
}

.home-section {
  display: grid;
  gap: 18px;
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.home-section-head h2 {
  margin: 4px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--heading);
}

.home-section-head.is-compact {
  align-items: start;
}

.home-inline-link {
  color: var(--sea);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.home-restaurant-card {
  display: grid;
  grid-template-rows: 210px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(34, 37, 46, 0.1);
}

.home-card-photo {
  display: block;
  overflow: hidden;
  background: #eef5f4;
}

.home-card-photo img,
.home-photo-empty {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-photo-empty {
  background: linear-gradient(135deg, rgba(27, 107, 122, 0.12), rgba(240, 124, 47, 0.12));
}

.home-card-body {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px;
}

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

.home-card-title h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--heading);
}

.home-card-title span {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(27, 107, 122, 0.12);
  color: var(--sea);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

.home-card-body p {
  margin: 0;
  color: var(--subtext1);
  font-size: 14px;
  line-height: 1.45;
}

.home-restaurant-card .result-rating-line,
.home-restaurant-card .result-hours-line {
  font-size: 13px;
}

.home-restaurant-card .result-detail-line {
  font-size: 13.5px;
  gap: 5px 7px;
}

.home-restaurant-card .result-feature-block {
  min-height: 80px;
  align-content: start;
}

.home-card-body small {
  color: var(--overlay2);
  font-size: 13px;
}

.home-split-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.home-panel {
  display: grid;
  gap: 16px;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-cuisine-section .home-category-grid.is-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-cuisine-section .home-category-grid.is-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.home-category-card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: start;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(27, 107, 122, 0.14);
  border-radius: 8px;
  background: #f9fbfa;
}

.home-category-card.is-compact {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 5px 8px;
  min-height: 92px;
  padding: 12px 14px;
  background: #fff;
}

.home-category-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding-bottom: 3px;
  color: var(--sea);
}

.home-category-card.is-compact .home-category-icon-wrap {
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
}

.home-category-icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

.home-category-card.is-compact .home-category-icon {
  width: 20px;
  height: 20px;
}

.home-category-label {
  align-self: start;
  padding-top: 2px;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
}

.home-category-card.is-compact .home-category-label {
  font-size: 15px;
}

.home-category-card strong {
  align-self: start;
  color: var(--sunset);
  font-family: "Fraunces", serif;
  font-size: 24px;
  line-height: 1;
}

.home-category-card.is-compact strong {
  font-size: 20px;
}

.home-category-card small {
  grid-column: 1 / -1;
  color: var(--subtext1);
  line-height: 1.45;
}

.home-category-card.is-compact small {
  font-size: 13px;
  line-height: 1.35;
}

.home-ad-band {
  grid-template-columns: 1fr;
  align-items: center;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: 0;
}

.site-footer {
  flex-shrink: 0;
  margin-top: 64px;
  padding: 34px 0 26px;
  border-top: 1px solid rgba(27, 107, 122, 0.14);
  /* Previous footer background: #f7faf9 */
  background: #fffaf4;
  position: relative;
  color: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 20, 26, 0.9);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 16px;
  align-items: center;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
  padding: 64px 24px 28px;
  overflow: hidden;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-count {
  position: fixed;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 64px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  z-index: 3;
}

.lightbox-count[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 112px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.lightbox-close:hover {
  background: var(--sunset);
  color: white;
}

.lightbox-nav {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-nav svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lightbox-nav:hover {
  background: var(--sunset);
  color: white;
}

@media (max-width: 700px) {
  .lightbox {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: center;
    column-gap: 22px;
    row-gap: 16px;
    padding: 68px 14px 22px;
  }

  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-image {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 154px);
    border-radius: 12px;
  }

  .lightbox-nav.prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .lightbox-nav.next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .lightbox-count {
    top: 19px;
    font-size: 12px;
    padding: 7px 11px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.85fr) minmax(190px, 0.85fr);
  gap: 38px;
  align-items: start;
}

.footer-grid h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: var(--heading);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 36px;
  max-width: min(210px, 100%);
  object-fit: contain;
}

.footer-brand p {
  max-width: 410px;
  margin: 0;
  color: var(--subtext1);
  line-height: 1.55;
}

.footer-claim-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--sea);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.link-list a {
  color: var(--subtext1);
  font-size: 14px;
  line-height: 1.35;
}

.link-list a:hover,
.footer-links a:hover,
.footer-claim-link:hover {
  color: var(--sunset);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 107, 122, 0.12);
  font-size: 14px;
  color: var(--overlay1);
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--overlay2);
}

.hint {
  font-size: 12px;
  color: var(--overlay2);
  margin-top: 6px;
}

.hours-status {
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 6px 0 10px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.hours-status.is-open {
  color: var(--green);
}

.hours-status.is-closed {
  color: var(--red);
}

.hours-status-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hours-status-copy {
  min-width: 0;
}

.hours-closed {
  color: inherit;
  font-weight: 700;
}

.hours-next {
  color: var(--text);
  font-weight: 600;
}

.price-descriptor {
  color: var(--subtext1);
  font-weight: 500;
  margin-left: 4px;
}

.hours-table {
  display: grid;
  gap: 6px;
}

.hours-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.hours-day {
  font-weight: 600;
  color: var(--text);
}

.hours-time {
  color: var(--subtext1);
}

.hours-row.is-today .hours-day,
.hours-row.is-today .hours-time {
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 1100px) {
  .home-cuisine-section .home-category-grid.is-featured,
  .home-cuisine-section .home-category-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-search {
    order: 3;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

}

@media (max-width: 900px) {
  .header-search input,
  .search-bar input {
    font-size: 16px;
  }

  .home-split-section,
  .home-ad-band {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .home-hero {
    min-height: 0;
  }

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

  .home-cuisine-section .home-category-grid.is-featured,
  .home-cuisine-section .home-category-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section.highlight {
    grid-template-columns: 1fr;
  }

  .page-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    align-items: center;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .site-header.mobile-menu-left .brand {
    order: 2;
  }

  .header-nav {
    display: none;
  }

  .header-menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
  }

  .site-header.mobile-menu-left .header-menu-toggle {
    order: 1;
  }

  .logo-image {
    max-width: min(330px, calc(100vw - 72px));
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    border-radius: 10px;
  }

  .header-search {
    order: 4;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .directory-toolbar {
    align-items: stretch;
  }

  .directory-toolbar-main {
    width: 100%;
  }

  .directory-results-count {
    width: 100%;
  }

  .directory-toolbar-controls {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .directory-sort-form {
    flex: 1 1 210px;
  }

  .directory-sort-field,
  .directory-sort-menu {
    width: 100%;
  }

  .result-card.compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .result-card.compact .result-photo {
    height: var(--directory-card-mobile-image-height);
    min-height: 0;
  }

  .result-photo-link {
    height: var(--directory-card-mobile-image-height);
    min-height: 0;
  }

  .result-card.compact .result-body {
    padding: 13px;
  }

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

  .claim-layout,
  .claim-form {
    grid-template-columns: 1fr;
  }

  .admin-selected-place,
  .admin-photo-order-head,
  .admin-photo-order-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-photo-upload-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .claim-checkbox span {
    white-space: normal;
  }

  .home-page {
    gap: 32px;
    padding-top: 8px;
  }

  .home-hero-copy h1 {
    font-size: 40px;
  }

  .home-search,
  .search-bar {
    flex-direction: column;
  }

  .admin-search-bar {
    grid-template-columns: 1fr;
  }

  .admin-photo-order-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .admin-photo-body {
    gap: 8px;
    padding: 9px;
  }

  .admin-photo-actions {
    gap: 5px;
  }

  .admin-photo-actions button {
    min-width: 32px;
    min-height: 32px;
    padding: 0 7px;
  }

  .home-search {
    padding: 8px;
  }

  .directory-toolbar-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .directory-sort-form {
    min-width: 0;
  }

  .directory-sort-field {
    display: grid;
    gap: 5px;
  }

  .directory-filters-panel {
    align-self: end;
  }

  .directory-filters-panel summary {
    height: 40px;
    min-width: 106px;
    justify-content: center;
  }

  .directory-empty-state {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .directory-filters-form {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 14px 12px 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .directory-filter-options.is-cuisine {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-filter-actions {
    position: sticky;
    bottom: 0;
    margin: 2px -12px 0;
    padding: 10px 12px 12px;
    background: #fff;
  }

  .directory-filter-close {
    display: inline-flex;
  }

  .home-hero-search,
  .search-page-form {
    flex-direction: row;
    gap: 6px;
    padding: 5px;
  }

  .home-hero-search input,
  .search-page-form input {
    min-height: 46px;
    padding-left: 10px;
    font-size: 16px;
  }

  .home-hero-search .home-search-button,
  .search-page-form .home-search-button {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .home-hero-search .home-search-button-label,
  .search-page-form .home-search-button-label {
    display: none;
  }

  .home-hero-search .home-search-button-icon,
  .search-page-form .home-search-button-icon {
    display: block;
  }

  .guide-map-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .guide-results-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .guide-map-head > p {
    text-align: left;
  }

  .guide-map,
  .directory-map {
    min-height: 320px;
  }

  .home-restaurant-grid,
  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-cuisine-section .home-category-grid.is-featured,
  .home-cuisine-section .home-category-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-category-card {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 6px 7px;
    min-height: 112px;
    padding: 10px;
  }

  .home-category-card.is-compact {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 5px 6px;
    min-height: 82px;
    padding: 9px 10px;
  }

  .home-category-icon-wrap {
    width: 22px;
    height: 22px;
    padding-bottom: 1px;
  }

  .home-category-card.is-compact .home-category-icon-wrap {
    width: 20px;
    height: 20px;
    padding-bottom: 1px;
  }

  .home-category-icon {
    width: 20px;
    height: 20px;
  }

  .home-category-card.is-compact .home-category-icon {
    width: 18px;
    height: 18px;
  }

  .home-category-label {
    font-size: 14px;
    line-height: 1.12;
    padding-top: 1px;
  }

  .home-category-label[data-mobile-label] {
    font-size: 0;
    line-height: 1;
  }

  .home-category-label[data-mobile-label]::after {
    content: attr(data-mobile-label);
    font-size: 14px;
    line-height: 1.12;
  }

  .home-category-card strong {
    font-size: 20px;
  }

  .home-category-card.is-compact strong {
    font-size: 18px;
  }

  .home-category-card small {
    font-size: 12.5px;
    line-height: 1.3;
  }

  .home-category-card.is-compact small {
    font-size: 12px;
    line-height: 1.28;
  }

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

  .result-body {
    padding: 13px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .admin-photo-order-list {
    grid-template-columns: 1fr;
  }
}
