/* Satra Plaza — mobile-first directory UI */
:root {
  --ink: #14201c;
  --ink-soft: #3a4a44;
  --paper: #f7f4ef;
  --paper-2: #efe8dc;
  --brand: #0f4c3a;
  --brand-deep: #0a3328;
  --accent: #d97706;
  --accent-soft: #fef3c7;
  --line: rgba(20, 32, 28, 0.12);
  --ok: #166534;
  --warn: #a16207;
  --bad: #991b1b;
  --ad-bg: #f3f0ea;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(20, 32, 28, 0.08);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 3.5rem;
  --bottom-nav-h: 4.25rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(15, 76, 58, 0.11), transparent 58%),
    radial-gradient(700px 360px at 100% 0%, rgba(217, 119, 6, 0.08), transparent 52%),
    linear-gradient(180deg, #fbf8f3 0%, var(--paper) 45%, #f3efe8 100%);
  line-height: 1.55;
  min-height: 100vh;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 0.5rem);
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-deep); }

.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.muted { color: var(--ink-soft); }

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header — compact on mobile */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 243, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: var(--header-h);
  padding: .55rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
  text-decoration: none;
}
.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: .82;
}
.brand__name span:last-child { color: var(--accent); }

.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-deep);
  text-decoration: none;
}

.site-nav--desktop { display: none; }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .header-search { display: none; }
  .header-inner { padding: .75rem 0; }
  .site-nav--desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
  }
  .site-nav--desktop a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: .95rem;
    padding: .35rem 0;
  }
  .site-nav--desktop a:hover,
  .site-nav--desktop a[aria-current="page"] { color: var(--brand); }
}

/* Bottom nav */
.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: var(--bottom-nav-h);
  padding: .35rem .25rem calc(.35rem + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(20, 32, 28, 0.06);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  min-height: 3.35rem;
  padding: .25rem .15rem;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: none;
  font: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav__icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
}

.bottom-nav__item.is-active,
.bottom-nav__item[aria-current="page"] {
  color: var(--brand);
}

.bottom-nav__item--search .bottom-nav__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  margin-top: -.35rem;
}

.bottom-nav__item--search.is-active .bottom-nav__icon,
.bottom-nav__item--search[aria-current="page"] .bottom-nav__icon {
  background: var(--brand-deep);
}

@media (min-width: 900px) {
  .bottom-nav,
  .more-sheet { display: none !important; }
}

/* More sheet */
.more-sheet[hidden] { display: none !important; }
.more-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.more-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 16, 0.45);
}

.more-sheet__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: min(78vh, 560px);
  overflow: auto;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: .5rem 1.15rem calc(1.25rem + var(--safe-bottom));
  box-shadow: 0 -12px 40px rgba(0,0,0,.18);
  animation: sheet-up .22s ease;
}

.more-sheet__handle {
  width: 2.5rem;
  height: .3rem;
  border-radius: 99px;
  background: var(--line);
  margin: .35rem auto .75rem;
}

.more-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.more-sheet__close {
  border: 0;
  background: var(--paper-2);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.more-sheet__links {
  display: grid;
  gap: .15rem;
}

.more-sheet__links a {
  display: block;
  padding: .95rem .35rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}
.more-sheet__links a:last-child { border-bottom: 0; }

@keyframes sheet-up {
  from { transform: translateY(16px); opacity: .6; }
  to { transform: translateY(0); opacity: 1; }
}

body.more-open { overflow: hidden; }

/* Home identity + search */
.home-top {
  padding: 1.35rem 0 0.75rem;
}

.identity__place {
  margin: 0 0 .35rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.identity__brand {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 .45rem;
  color: var(--brand-deep);
}
.identity__brand span { color: var(--accent); }

.identity__tag {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 28ch;
}

.search-hero {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .45rem .45rem .45rem .85rem;
  box-shadow: var(--shadow);
}

.search-hero__icon { flex: 0 0 auto; color: var(--ink-soft); }

.search-hero input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.02rem;
  padding: .65rem .25rem;
  outline: none;
}

.search-hero__btn {
  flex: 0 0 auto;
  padding: .8rem 1rem;
  border-radius: 12px;
}

.search-hero--compact { box-shadow: none; }

.page-hero {
  padding: 1.15rem 0 .35rem;
}
.page-hero--compact {
  padding-bottom: 0;
}
.page-hero--compact .page-lead {
  margin-bottom: .35rem;
}

.page-lead {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  border-radius: 12px;
  padding: .85rem 1.15rem;
  min-height: 2.85rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: #1c1204; }
.btn-primary:hover { background: #f59e0b; color: #1c1204; }
.btn-secondary { background: #fff; color: var(--brand-deep); border: 1px solid var(--line); }
.btn-ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.btn-danger { background: #fee2e2; color: var(--bad); }
.btn-sm { padding: .4rem .75rem; min-height: 0; font-size: .88rem; }

/* Sections */
.section { padding: 1.65rem 0; }
.section--tight { padding: 1rem 0; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: .65rem;
  margin-bottom: .95rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  margin: 0;
  letter-spacing: -0.02em;
}
.section-head p { margin: .2rem 0 0; color: var(--ink-soft); max-width: 42ch; font-size: .95rem; }
.section-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--brand);
  white-space: nowrap;
}

/* Horizontal scroll rails */
.h-scroll {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding: .15rem .15rem .65rem;
  margin: 0 -.15rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.h-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }

.chip-card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 8.5rem;
  max-width: 11rem;
  padding: .95rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.chip-card strong {
  font-family: var(--font-display);
  font-size: .98rem;
  letter-spacing: -0.01em;
}
.chip-card span { color: var(--ink-soft); font-size: .85rem; }
.chip-card--sm { min-width: auto; padding: .7rem .9rem; }

.floor-card {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 9.5rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(15, 76, 58, 0.94), rgba(10, 51, 40, 0.9));
  color: #f4faf7;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.floor-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.floor-card span { opacity: .82; font-size: .88rem; }

.h-scroll--cards .h-scroll__item {
  width: min(72vw, 240px);
}

@media (min-width: 720px) {
  .h-scroll--cards .h-scroll__item { width: 230px; }
}

/* Cards / tiles */
.grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-2, .grid-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4, .grid-cards { grid-template-columns: repeat(3, 1fr); }
}

.card-link,
.business-card,
.tile {
  display: block;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card-link:hover,
.business-card:hover,
.tile:hover {
  border-color: rgba(15, 76, 58, 0.32);
  box-shadow: var(--shadow);
}

.business-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .9rem 1rem;
}

.business-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .55rem;
}

.business-card h3,
.tile h2,
.tile h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.business-card__go {
  margin-top: auto;
  padding-top: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  color: var(--ink-soft);
  font-size: .88rem;
  margin: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .15rem .55rem;
  font-size: .78rem;
  font-weight: 700;
  background: var(--paper-2);
  color: var(--ink-soft);
}
.badge-ok { background: #dcfce7; color: var(--ok); }
.badge-warn { background: var(--accent-soft); color: var(--warn); }
.badge-bad { background: #fee2e2; color: var(--bad); }

.excerpt { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* Offers */
.offer-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: min(78vw, 260px);
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #fff7ed, #fff);
  border: 1px solid rgba(217, 119, 6, 0.28);
  text-decoration: none;
  color: inherit;
}
.offer-card--full {
  width: auto;
}
.offer-card__eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.offer-card h2,
.offer-card strong {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.1rem;
}
.offer-card__biz,
.offer-card__meta { color: var(--ink-soft); font-size: .9rem; }
.offer-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-top: .35rem;
  font-size: .9rem;
}
.offer-grid {
  display: grid;
  gap: .85rem;
}
@media (min-width: 720px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

.offers-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 76, 58, 0.08), rgba(217, 119, 6, 0.1));
  border: 1px dashed rgba(15, 76, 58, 0.25);
  text-decoration: none;
  color: inherit;
}
.offers-teaser strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: .25rem;
}
.offers-teaser p { margin: 0; color: var(--ink-soft); max-width: 42ch; }
.offers-teaser__cta {
  font-weight: 800;
  color: var(--brand);
}

.offers-empty__hero {
  text-align: center;
  margin-bottom: 1.25rem;
}
.offers-empty__hero h2 {
  font-family: var(--font-display);
  margin: 0 0 .4rem;
}
.offers-empty__hero p { margin: 0 auto; color: var(--ink-soft); max-width: 40ch; }

.offers-roadmap {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 720px) {
  .offers-roadmap { grid-template-columns: repeat(3, 1fr); }
}
.offers-roadmap__item {
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.offers-roadmap__item strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: .3rem;
}
.offers-roadmap__item p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.offers-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}

/* Info / CTA */
.info-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
.info-tile {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 5.5rem;
}
.info-tile strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.info-tile span { color: var(--ink-soft); font-size: .88rem; }

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 51, 40, 0.96), rgba(15, 76, 58, 0.9));
  color: #f7faf8;
}
.cta-banner h2 {
  font-family: var(--font-display);
  margin: 0 0 .4rem;
  font-size: 1.35rem;
}
.cta-banner p { margin: 0; color: rgba(247,250,248,.88); max-width: 48ch; }
.cta-banner .btn-primary { align-self: flex-start; }

@media (min-width: 760px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 1.75rem;
  }
}

.quick-links {
  display: grid;
  gap: .55rem;
}
.quick-links a {
  display: block;
  padding: .95rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}

.faq-list { display: grid; gap: .55rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem .85rem 2rem;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style-position: outside;
}
.faq-item p { margin: .65rem 0 0; color: var(--ink-soft); }

.search-suggestions { margin-top: 1.15rem; }
.search-suggestions__label {
  margin: 0 0 .55rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.results-meta {
  margin: 0 0 .85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Ad slots */
.ad-slot {
  margin: 1rem 0;
  background: var(--ad-bg);
  border: 1px dashed rgba(20, 32, 28, 0.18);
  border-radius: 10px;
  min-height: 90px;
  display: grid;
  place-items: center;
  color: #7a7368;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ad-slot[data-position="leaderboard"] { min-height: 100px; }
.ad-slot[data-position="sidebar"] { min-height: 250px; }
.ad-slot[data-position="in-feed"] { min-height: 90px; }
.ad-slot__label { opacity: .7; }

/* Forms */
.form-stack { display: grid; gap: 1rem; max-width: 560px; }
.form-stack.business-wizard { max-width: 760px; }
.form-row { display: grid; gap: .35rem; }
.form-row label { font-weight: 700; font-size: .95rem; }
.form-row.is-invalid label,
.form-row.is-invalid .label-error { color: var(--bad); }
.label-error {
  font-weight: 600;
  font-size: .88rem;
  color: var(--bad);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
  background: #fff;
  min-height: 2.85rem;
}
.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid,
.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: var(--bad);
  background: #fff8f8;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-error { color: var(--bad); font-size: .88rem; }
.form-hint { color: var(--ink-soft); font-size: .88rem; }
.form-grid {
  display: grid;
  gap: .85rem 1rem;
}
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-row--full { grid-column: 1 / -1; }
  .form-row--half { grid-column: span 1; }
}
.alert {
  padding: .85rem 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
}
.alert-success { background: #dcfce7; color: var(--ok); }
.alert-error { background: #fee2e2; color: var(--bad); }
.alert-info { background: #e0f2fe; color: #075985; }

/* Business detail */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 .5rem;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  color: var(--ink-soft);
  font-size: .88rem;
  margin: 0 0 .85rem;
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); }

.biz-hero { padding: 1rem 0 .25rem; }

.biz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1rem;
}
.biz-meta__pill {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
}

.biz-actions-inline {
  display: none;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .5rem;
}

.detail-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .detail-layout {
    grid-template-columns: 1.65fr .8fr;
    align-items: start;
  }
  .biz-actions-inline { display: flex; }
}

.panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-bottom: .85rem;
}
.panel-title {
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.panel-subtitle {
  margin: 1rem 0 .35rem;
  font-size: 1rem;
}

.biz-main .panel:last-child { margin-bottom: 0; }

.biz-banners {
  margin-bottom: .85rem;
  display: grid;
  gap: .65rem;
}
.biz-banners img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.photo-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: 1fr 1fr;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.hours-text { white-space: pre-line; }
.biz-offer { margin-bottom: 1rem; }
.biz-offer:last-child { margin-bottom: 0; }

.review-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.review-item__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.contact-list a { font-weight: 700; text-decoration: none; }

.related-block { margin-top: 1.5rem; }

/* Sticky call/WhatsApp/maps bar (mobile) */
.biz-sticky {
  position: fixed;
  left: 0; right: 0;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
  z-index: 55;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: .45rem;
  padding: .55rem .75rem;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.biz-sticky__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
}
.biz-sticky__btn--call {
  background: var(--accent);
  color: #1c1204;
}
.biz-sticky__btn--maps {
  background: #fff;
  color: var(--brand-deep);
  border: 1px solid var(--line);
}
.biz-sticky__btn--wa {
  background: #128c7e;
  color: #fff;
}

body.page-business:has(.biz-sticky) {
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 4.25rem);
}

@media (min-width: 900px) {
  .biz-sticky { display: none; }
  body.page-business:has(.biz-sticky) { padding-bottom: 0; }
}

.filters {
  display: grid;
  gap: .75rem;
  margin-bottom: .5rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
@media (min-width: 760px) {
  .filters {
    grid-template-columns: 2fr 1fr 1fr auto;
    align-items: end;
  }
}

.pagination {
  /* legacy — prefer .pager */
  display: none;
}

.pager-wrap {
  margin-top: 1.35rem;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex-wrap: wrap;
}

.pager__pages {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pager__ctrl,
.pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  min-width: 2.4rem;
  padding: .35rem .7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  list-style: none;
}

.pager__ctrl.is-disabled {
  opacity: .4;
  pointer-events: none;
}

.pager__num.is-current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

ul.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #0f1c18;
  color: rgba(247, 244, 239, 0.82);
  padding: 2rem 0 1.5rem;
}
.site-footer a { color: #fde68a; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 .5rem;
  text-decoration: none;
}
.footer-brand:hover { color: #fff; text-decoration: none !important; }
.footer-brand__mark {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.footer-brand__name {
  display: flex;
  flex-direction: column;
  line-height: .84;
}
.footer-brand__name span:last-child { color: #f59e0b; }
.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: .9rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: rise .45s ease both; }
.fade-in:nth-child(2) { animation-delay: .04s; }
.fade-in:nth-child(3) { animation-delay: .08s; }
.fade-in:nth-child(4) { animation-delay: .12s; }

.prose { max-width: 65ch; }
.prose h2 { font-family: var(--font-display); }

.home-authority {
  margin-top: .15rem;
}
.home-authority h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
}
.home-authority p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}
.home-authority .home-authority__links {
  margin-top: .55rem;
  font-weight: 600;
}

.home-intent-links {
  margin-top: .35rem;
  margin-bottom: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
.home-category-scroll {
  margin-top: .15rem;
}
.home-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.15rem;
  margin: 1rem 0 0;
}
.home-inline-links a {
  font-weight: 700;
  text-decoration: none;
}

.biz-location-line {
  margin: .25rem 0 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.landing-copy {
  max-width: 70ch;
}

.authority-content {
  max-width: 72ch;
}
.authority-content h2 {
  margin: 1.75rem 0 .55rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}
.authority-content h2:first-child { margin-top: 0; }
.authority-content p,
.authority-content li {
  color: var(--ink-soft);
  line-height: 1.65;
}
.authority-content ul { padding-left: 1.25rem; }
.authority-note {
  max-width: 72ch;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: var(--paper);
}
.authority-note h2 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.authority-note p { margin: 0; color: var(--ink-soft); }
.admin-preview-banner {
  padding: .75rem 1rem;
  text-align: center;
  color: #fff;
  background: #0f4c3a;
}
.admin-preview-banner a {
  margin-left: .75rem;
  color: #fff;
  text-decoration: underline;
}
.directory-disclaimer {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.floor-category-list {
  color: var(--ink-soft);
  font-size: .9rem;
}
.floor-category-links { margin-bottom: 1rem; }

.info-grid--compact {
  gap: .65rem;
}

.contribute-panel {
  padding: .85rem 1rem;
}
.contribute-panel > summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
}
.contribute-panel > summary::-webkit-details-marker { display: none; }
.contribute-panel .contribute-links {
  margin-top: .75rem;
}

@media (max-width: 719px) {
  .biz-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
  }
  .biz-act {
    text-align: center;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .home-top {
    padding-bottom: .35rem;
  }
}
.empty {
  padding: 1.35rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  text-align: center;
  background: rgba(255,255,255,.55);
}

/* Shared business submit form */
.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem .25rem;
  margin: 0 0 1.25rem;
  background: rgba(255,255,255,.55);
}
.form-section legend {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0 .35rem;
}
.legend-note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .85rem;
  color: var(--ink-soft);
}
.benefit-list {
  display: grid;
  gap: .35rem .75rem;
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
}
@media (min-width: 640px) {
  .benefit-list { grid-template-columns: 1fr 1fr; }
}

.wizard-progress {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 1.75rem;
  overflow-x: auto;
  padding: .35rem .15rem 1rem;
}
.wizard-progress__item {
  display: grid;
  justify-items: center;
  gap: .4rem;
  min-width: 4.5rem;
  flex: 0 0 auto;
}
.wizard-progress__circle {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  position: relative;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.wizard-progress__check { display: none; }
.wizard-progress__item.is-current .wizard-progress__circle {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 76, 58, 0.12);
}
.wizard-progress__item.is-complete .wizard-progress__circle {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.wizard-progress__item.is-complete .wizard-progress__num { display: none; }
.wizard-progress__item.is-complete .wizard-progress__check { display: inline; }
.wizard-progress__label {
  font-size: .72rem;
  text-align: center;
  color: var(--ink-soft);
  max-width: 5.5rem;
  line-height: 1.25;
}
.wizard-progress__item.is-current .wizard-progress__label,
.wizard-progress__item.is-complete .wizard-progress__label {
  color: var(--brand-deep);
  font-weight: 600;
}
.wizard-progress__line {
  flex: 1 1 1.25rem;
  height: 3px;
  background: var(--line);
  margin-top: 1rem;
  min-width: 1rem;
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}
.wizard-progress__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.wizard-progress__line.is-filled::after { transform: scaleX(1); }

.wizard-panel[hidden] { display: none !important; }
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-top: .5rem;
}
.wizard-actions__right {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-left: auto;
}
.wizard-actions [hidden] { display: none !important; }
.btn-sm {
  padding: .35rem .7rem;
  font-size: .85rem;
  min-height: 0;
}

.hours-table { display: grid; gap: .55rem; }
.hours-row {
  display: grid;
  grid-template-columns: 6.5rem auto 1fr auto 1fr auto;
  gap: .45rem;
  align-items: center;
  padding: .45rem .55rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255,255,255,.65);
}
.hours-day { font-weight: 600; font-size: .92rem; }
.hours-closed { font-size: .85rem; white-space: nowrap; display: inline-flex; gap: .35rem; align-items: center; }
.hours-sep { font-size: .85rem; }
.hours-row input[type="time"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .45rem .55rem;
  font: inherit;
  background: #fff;
}
.hours-copy-btn { white-space: nowrap; }
@media (max-width: 720px) {
  .hours-row { grid-template-columns: 1fr 1fr; }
  .hours-day { grid-column: 1 / -1; }
  .hours-closed { grid-column: 1 / -1; }
  .hours-copy-btn { grid-column: 1 / -1; justify-self: start; }
}

.photo-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: .75rem 0 1rem;
}
.photo-thumb {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 1.4rem;
  height: 1.4rem;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 28, 24, 0.78);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.photo-thumb__remove:hover { background: var(--bad); }

.url-group {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--line);
}
.url-group__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 .75rem;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin: 0 0 .85rem;
  background: #fff;
}
.summary-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.summary-card__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.summary-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: .25rem;
}
.wizard-summary__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: block;
  margin-bottom: .35rem;
}

.repeat-item {
  border-top: 1px dashed var(--line);
  padding-top: .75rem;
  margin-top: .75rem;
}
.repeat-item:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
@media (max-width: 640px) {
  .wizard-progress__label { display: none; }
  .wizard-progress__item { min-width: 2.4rem; }
}

/* Desktop polish for home identity */
@media (min-width: 900px) {
  .home-top { padding: 2.25rem 0 1rem; }
  .identity__tag { font-size: 1.15rem; max-width: 36ch; }
  .search-hero { max-width: 640px; }
  .section { padding: 2rem 0; }
  .section--tight { padding: 1.5rem 0; }
  .container { width: min(100% - 2rem, var(--max)); }
}

/* —— Business page enhancements —— */
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .65rem;
}
.panel-head .panel-title { margin: 0; }
.panel-head--reviews { margin-bottom: 1rem; }
.section-suggest {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: var(--brand);
}
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.detail-list li {
  display: grid;
  gap: .15rem;
}
.detail-list span {
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.detail-list strong { font-weight: 700; }

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .65rem;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid transparent;
}
.hours-list li.is-today {
  border-color: rgba(15, 76, 58, 0.28);
  background: rgba(15, 76, 58, 0.06);
  font-weight: 700;
}
.hours-list__day em {
  font-style: normal;
  font-size: .72rem;
  color: var(--brand);
  margin-left: .35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hours-list__time { color: var(--ink-soft); white-space: nowrap; }

.biz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 .25rem;
}
.biz-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: .55rem .95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}
.biz-act--call { background: var(--accent); border-color: transparent; color: #1c1204; }
.biz-act--wa { background: #128c7e; border-color: transparent; color: #fff; }
.biz-act--maps { background: var(--brand); border-color: transparent; color: #fff; }

.biz-actions-inline { display: none; }

.biz-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}
.biz-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.biz-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-gallery__thumb.is-hide-mobile-extra,
.biz-gallery__more--desktop { display: none; }
.biz-gallery__more-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 28, 22, 0.55);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}
@media (min-width: 900px) {
  .biz-gallery { grid-template-columns: repeat(5, 1fr); gap: .55rem; }
  .biz-gallery__thumb.is-hide-mobile-extra.is-show-desktop { display: block; }
  .biz-gallery__thumb.is-hide-desktop-extra { display: none; }
  .biz-gallery__more--mobile { display: none; }
  .biz-gallery__more--desktop { display: block; }
}

.review-card {
  flex: 0 0 calc(50% - .4rem);
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem;
  scroll-snap-align: start;
}
.review-more {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.review-more:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.h-scroll--reviews {
  padding-bottom: .35rem;
}
.h-scroll-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .35rem;
}
.h-scroll-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brand-deep);
}
@media (max-width: 420px) {
  .review-card { flex-basis: 85%; min-width: 85%; }
}

.review-form-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contribute-links {
  display: grid;
  gap: .45rem;
}
.contribute-links a {
  display: block;
  padding: .7rem .8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
}

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 14, 0.88);
}
.lightbox__dialog {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .35rem;
  padding: 3rem .5rem 1.5rem;
}
.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: .65rem;
  max-height: 100%;
}
.lightbox__figure img {
  max-width: min(100%, 960px);
  max-height: calc(100vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  touch-action: pan-y;
}
.lightbox__cap {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
}
.lightbox__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
body.lightbox-open { overflow: hidden; }
