:root {
  --bg: #f3efe6;
  --bg-alt: #e8e2d4;
  --ink: #1c2430;
  --muted: #5c6674;
  --brand: #0f5c4c;
  --brand-deep: #0a3f35;
  --accent: #c45c26;
  --line: rgba(28, 36, 48, 0.12);
  --card: rgba(255, 252, 246, 0.92);
  --shadow: 0 18px 50px rgba(28, 36, 48, 0.08);
  --radius: 18px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(15, 92, 76, 0.16), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(196, 92, 38, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--bg) 40%, #efe8da 100%);
  min-height: 100vh;
  line-height: 1.55;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.narrow { max-width: 40rem; }
.sr-only, .skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(243, 239, 230, 0.85);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand-mark {
  width: 2.2rem; height: 2.2rem; border-radius: 0.7rem;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #f7f3ea; font-weight: 700;
}
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.nav > a { text-decoration: none; font-weight: 600; color: var(--ink); }
.lang-switch { display: flex; flex-wrap: wrap; gap: .35rem; max-width: 22rem; justify-content: flex-end; }
.lang-switch a {
  font-size: .78rem; text-decoration: none; color: var(--muted);
  padding: .2rem .45rem; border-radius: 999px; border: 1px solid transparent;
}
.lang-switch a.is-active { color: var(--brand-deep); border-color: var(--line); background: #fff; }

.hero {
  position: relative; min-height: min(78vh, 720px);
  display: grid; align-items: end; overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 92, 76, 0.88), rgba(28, 36, 48, 0.55)),
    radial-gradient(800px 400px at 70% 40%, rgba(196, 92, 38, 0.35), transparent 60%),
    linear-gradient(135deg, #0f5c4c, #1c2430 55%, #2a4a42);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}
.hero-content { position: relative; color: #f7f3ea; max-width: 40rem; animation: rise .8s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.brand-kicker {
  font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 .4rem; letter-spacing: -0.03em; line-height: 1;
}
.hero h1 {
  margin: 0 0 .8rem; font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 600; max-width: 18ch;
}
.lede { color: inherit; opacity: .92; margin: 0 0 1.4rem; max-width: 38ch; }
.hero-search, .search-bar {
  display: grid; grid-template-columns: 1fr auto; gap: .55rem;
  background: rgba(255,252,246,.96); padding: .55rem; border-radius: 999px;
  box-shadow: var(--shadow);
}
.search-bar { grid-template-columns: 1.4fr 1fr auto; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.hero-search input, .search-bar input, .search-bar select,
.stack-form input, .stack-form select, .stack-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; font: inherit; background: #fff; color: var(--ink);
}
.hero-search input { border: 0; background: transparent; border-radius: 999px; }
.hero-search button, .btn {
  border: 0; border-radius: 999px; padding: .85rem 1.25rem;
  background: var(--accent); color: #fff; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center;
}
.btn-ghost { background: transparent; color: #f7f3ea; border: 1px solid rgba(247,243,234,.45); }
.btn-sm { padding: .4rem .75rem; font-size: .85rem; border-radius: 10px; }
.btn-danger { background: #8b2e2e; }
.cta-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

.section { padding: 3.5rem 0; }
.section-alt { background: rgba(255,252,246,.45); }
.section-head { margin-bottom: 1.5rem; }
.section-head h2, .section-head h1, .biz-hero h1, .panel h2 {
  font-family: var(--display); letter-spacing: -0.02em; margin: 0 0 .4rem;
}
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.sector-grid, .biz-grid, .photo-grid, .stat-grid {
  display: grid; gap: 1rem;
}
.sector-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.biz-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.photo-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.sector-link, .biz-card, .panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sector-link {
  padding: 1.1rem 1.2rem; text-decoration: none; color: inherit;
  transition: transform .25s ease, border-color .25s ease;
}
.sector-link:hover { transform: translateY(-3px); border-color: rgba(15,92,76,.35); }
.sector-name { display: block; font-weight: 700; }
.sector-count { color: var(--muted); font-size: .9rem; }

.biz-card { overflow: hidden; display: flex; flex-direction: column; }
.biz-card-media { aspect-ratio: 16/10; overflow: hidden; background: #d9d2c3; }
.biz-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.biz-card:hover .biz-card-media img { transform: scale(1.04); }
.biz-card-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #c9d7d2, #e8d7c8); }
.biz-card-body { padding: 1rem 1.1rem 1.2rem; }
.biz-card-cat { margin: 0; color: var(--brand); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.biz-card h3 { margin: .25rem 0 .35rem; font-size: 1.15rem; font-family: var(--display); }
.biz-card h3 a { text-decoration: none; color: inherit; }
.biz-card-addr { margin: 0; color: var(--muted); font-size: .92rem; }
.biz-card-rating { margin: .55rem 0 0; font-weight: 600; }
.stars { color: #c45c26; letter-spacing: .05em; }

/* Google-style rating + reviews */
.g-rating {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .65rem;
}
.g-rating-score {
  font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.g-rating--card .g-rating-score { font-size: 2.1rem; }
.g-rating--inline .g-rating-score { font-size: 1.25rem; }
.g-stars { display: inline-flex; gap: .08rem; line-height: 1; }
.g-star { font-size: 1.15rem; color: #dadce0; }
.g-star--full { color: #fbbc04; }
.g-star--half {
  background: linear-gradient(90deg, #fbbc04 50%, #dadce0 50%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.g-stars--sm .g-star { font-size: .95rem; }
.g-rating-count, .g-rating-brand { color: var(--muted); font-size: .95rem; }
.g-rating-card h2 { margin-bottom: .75rem; }
.map-dir-wrap { margin: .85rem 0 0; }

.g-reviews {
  margin-top: 2.5rem; padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(243,239,230,.9) 100%);
}
.g-reviews-head {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.g-reviews-brand {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: grid; place-items: center; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line);
  color: #4285f4; font-weight: 800; font-family: var(--font);
  box-shadow: 0 6px 18px rgba(28,36,48,.06);
}
.g-reviews-head h2 {
  margin: 0 0 .4rem; font-family: var(--display); font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.g-reviews-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
}
.g-review {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.15rem 1.25rem; box-shadow: 0 10px 28px rgba(28,36,48,.05);
}
.g-review-top { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: .7rem; }
.g-review-avatar {
  width: 2.4rem; height: 2.4rem; border-radius: 999px;
  display: grid; place-items: center; flex-shrink: 0;
  background: #e8f0fe; color: #1967d2; font-weight: 700;
}
.g-review-meta { display: grid; gap: .2rem; }
.g-review-name { font-size: .98rem; }
.g-review-time { color: var(--muted); font-size: .85rem; }
.g-review-text {
  margin: 0; color: var(--ink); line-height: 1.65; font-size: .98rem;
  white-space: pre-wrap;
}

.nearby-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.nearby-list a {
  display: flex; flex-wrap: wrap; gap: .35rem .75rem; align-items: baseline;
  text-decoration: none; color: inherit; padding: .75rem .9rem;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.nearby-list a:hover { border-color: rgba(15,92,76,.35); }
.nearby-rating { margin-left: auto; color: #c45c26; font-weight: 700; font-size: .92rem; }

.firm-sticky {
  position: sticky; bottom: 0; z-index: 30;
  display: none; gap: .4rem; padding: .65rem .75rem;
  background: rgba(255,252,246,.94); border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.firm-sticky a {
  flex: 1; text-align: center; text-decoration: none; font-weight: 700; font-size: .85rem;
  padding: .7rem .4rem; border-radius: 12px; background: var(--brand); color: #f7f3ea;
}
.firm-sticky a:nth-child(2) { background: var(--brand-deep); }
.firm-sticky a:nth-child(3), .firm-sticky a:nth-child(4) {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .firm-sticky { display: flex; }
  body { padding-bottom: 4.5rem; }
}

.biz-hero { padding: 2rem 0 1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.breadcrumbs a { color: inherit; }
.biz-hero-grid { display: grid; gap: 1.5rem; grid-template-columns: 1.2fr .8fr; align-items: start; }
.biz-hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.biz-hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.biz-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: 1.25rem; align-items: start; }
.panel { padding: 1.25rem 1.35rem; margin-bottom: 1rem; }
.sticky { position: sticky; top: 5.2rem; }
.map-embed { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.hours-list, .review-list, .qa-list { margin: 0; padding-left: 1.1rem; }
.review-list li, .qa-list li { margin-bottom: 1rem; }
.review-head { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.faq-list details { border-top: 1px solid var(--line); padding: .75rem 0; }
.faq-list summary { cursor: pointer; font-weight: 600; }
.stack-form { display: grid; gap: .75rem; }
.stack-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .92rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .75rem; }
.alert { padding: .85rem 1rem; border-radius: 12px; }
.alert-ok { background: #e5f4ea; color: #1f5a3a; }
.alert-err { background: #f8e5e5; color: #7a1f1f; }
.pagination { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }

/* Homepage add-business CTA */
.hero-cta { margin-top: 1.1rem; }
.btn-hero-secondary {
  background: rgba(247,243,234,.12); color: #f7f3ea;
  border: 1px solid rgba(247,243,234,.42); backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover { background: rgba(247,243,234,.2); color: #fff; }
.add-biz-panel {
  margin-top: 1rem; max-width: 36rem; padding: 1rem 1.1rem;
  border-radius: 16px; background: rgba(255,252,246,.94); color: var(--ink);
  box-shadow: var(--shadow); animation: rise .45s ease both;
}
.add-biz-row { display: grid; grid-template-columns: 1fr auto; gap: .55rem; }
.add-biz-row input {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem 1rem; font: inherit; background: #fff;
}
.add-biz-help { margin: .65rem 0 0; color: var(--muted); font-size: .88rem; }

/* Business / firm page — photo-first, website-like */
.btn-outline {
  background: #fff; color: var(--brand-deep);
  border: 1px solid rgba(15,92,76,.35);
}
.btn-ghost-ink {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.reveal-pending { opacity: 0; transform: translateY(12px); }
.reveal-in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

.firm { padding: 0 0 3rem; }
.firm-top { margin-bottom: 0; padding-top: .85rem; }
.firm-top .breadcrumbs { margin-bottom: .75rem; }
.firm-stage {
  display: grid; gap: .4rem; margin: 0 0 .85rem;
  min-height: 0;
  max-height: min(38vh, 340px);
}
.firm-stage--split {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  height: min(38vh, 340px);
  max-height: min(38vh, 340px);
}
.firm-stage-side {
  display: grid; gap: .4rem; grid-template-rows: 1fr 1fr; min-height: 0; height: 100%;
}
.firm-shot {
  border: 0; padding: 0; margin: 0; cursor: zoom-in; overflow: hidden;
  border-radius: 18px; background: #152029;
  display: block; width: 100%; height: 100%; position: relative;
}
.firm-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.firm-shot:hover img { transform: scale(1.03); }
.firm-shot--lead {
  min-height: 0;
  box-shadow: var(--shadow);
}
.firm-stage--split .firm-shot--lead { min-height: 0; height: 100%; }
.firm-stage:not(.firm-stage--split) .firm-shot--lead {
  aspect-ratio: 21/9; min-height: 0; height: auto;
  max-height: min(38vh, 340px);
}
.firm-stage-side .firm-shot { min-height: 0; }
.firm-shot-more {
  position: absolute; right: .8rem; bottom: .8rem;
  background: rgba(12, 18, 22, 0.75); color: #fff;
  font-size: .8rem; font-weight: 700; padding: .4rem .75rem;
  border-radius: 999px; pointer-events: none;
}

.firm-head { padding: 0 0 1rem; }
.firm-kicker {
  margin: 0 0 .25rem; color: var(--brand); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.firm-title {
  font-family: var(--display); font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.03em; line-height: 1.06; margin: 0 0 .35rem; max-width: 26ch;
}
.firm-addr {
  margin: 0 0 .45rem; color: var(--muted); font-size: 1.02rem; line-height: 1.45;
  max-width: 60ch;
}
.firm-meta { display: flex; flex-wrap: wrap; gap: .2rem 1rem; align-items: baseline; margin: 0; }
.firm-meta > p { margin: 0; }
.firm-rating { font-weight: 600; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.firm-cta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .65rem; }

.firm-body {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .9fr);
  gap: 1.5rem; align-items: start; padding-top: .2rem;
}
.firm-block {
  background: transparent; border: 0; border-radius: 0;
  box-shadow: none; padding: 0 0 1.6rem; margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.firm-block:last-of-type { border-bottom: 0; }
.firm-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow); padding: 1.35rem 1.4rem; margin-bottom: 1rem;
}
.firm-block h2, .firm-card h2 {
  font-family: var(--display); letter-spacing: -0.02em; margin: 0 0 .85rem;
  font-size: 1.5rem;
}
.firm-subhead {
  font-family: var(--display); font-size: 1.2rem; margin: 1.5rem 0 .4rem;
}
.firm-about p { margin: 0 0 1.05rem; max-width: 68ch; line-height: 1.7; font-size: 1.04rem; }
.firm-about p:last-child { margin-bottom: 0; }
.firm-gallery {
  display: grid; gap: .55rem;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}
.firm-tile {
  border: 0; padding: 0; margin: 0; cursor: zoom-in; overflow: hidden;
  border-radius: 14px; background: #152029; aspect-ratio: 4/3;
  box-shadow: 0 10px 28px rgba(28, 36, 48, 0.08);
}
.firm-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.firm-tile:hover img { transform: scale(1.05); }
.firm-fact { margin-bottom: 1rem; }
.firm-fact:last-child { margin-bottom: 0; }
.firm-fact-label {
  display: block; font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--brand); margin-bottom: .3rem;
}
.firm-fact .hours-list { margin-top: .35rem; padding-left: 1rem; }

.geo-addr a.geo-addr-link {
  color: var(--brand-deep); text-decoration: underline; text-underline-offset: .16em;
  text-decoration-thickness: 1px; font-weight: 600;
}
.geo-addr a.geo-addr-link:hover { color: var(--accent); }
.geo-addr--card { font-size: .9rem; }

/* Lightbox — fixed overlay (not native dialog; more reliable) */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 1rem;
  color: #fff;
}
.lightbox[hidden] { display: none !important; }
.lightbox-scrim {
  position: absolute; inset: 0; border: 0; padding: 0; margin: 0;
  background: rgba(10, 14, 18, 0.88); cursor: zoom-out;
}
.lightbox-panel {
  position: relative; z-index: 1; width: min(96vw, 1040px);
  display: grid; place-items: center;
}
.lightbox-figure { margin: 0; max-width: 100%; text-align: center; }
.lightbox-figure img {
  display: block; margin: 0 auto;
  max-width: min(92vw, 1000px); max-height: min(76vh, 820px);
  width: auto; height: auto; min-height: 200px; object-fit: contain;
  border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.45);
  background: #1a1f24;
}
.lightbox-cap { text-align: center; margin-top: .7rem; color: rgba(255,255,255,.82); font-size: .9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; border: 0; background: rgba(255,255,255,.16); color: #fff;
  width: 2.7rem; height: 2.7rem; border-radius: 999px; cursor: pointer; font-size: 1.55rem;
  display: grid; place-items: center; backdrop-filter: blur(4px); z-index: 2;
}
.lightbox-close { top: -0.2rem; right: -0.2rem; }
.lightbox-prev { left: .15rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: .15rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.3); }
body.lightbox-open { overflow: hidden; }

.geo-section { padding-top: 1.5rem; }
.geo-crumbs ol {
  display: flex; flex-wrap: wrap; gap: .35rem .55rem; list-style: none;
  margin: 0 0 1.25rem; padding: 0; color: var(--muted); font-size: .92rem;
}
.geo-crumbs li:not(:last-child)::after { content: "/"; margin-left: .55rem; color: var(--line); }
.geo-crumbs a { color: inherit; text-decoration: none; }
.geo-crumbs a:hover { color: var(--accent); }
.geo-kicker {
  margin: 0 0 .35rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--brand);
}
.geo-subhead {
  margin: 2rem 0 .85rem; font-family: var(--display); font-size: 1.35rem;
}
.geo-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.geo-list li > a {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .85rem 1rem; border-radius: 14px; text-decoration: none; color: inherit;
  background: rgba(255,252,246,.72); border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.geo-list li > a:hover {
  border-color: var(--line); background: #fff; transform: translateY(-1px);
}
.geo-name { font-weight: 600; }
.geo-meta { color: var(--muted); font-size: .9rem; white-space: nowrap; }
.geo-pager {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-top: 1.25rem; color: var(--muted);
}
.geo-map {
  margin: 0 0 1.5rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.geo-map img { width: 100%; height: auto; }
.geo-attrib { margin-top: 2rem; font-size: .85rem; }

.pagination { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }

.site-footer { border-top: 1px solid var(--line); padding: 2.5rem 0; margin-top: 2rem; background: rgba(255,252,246,.55); }
.footer-inner { display: grid; gap: .8rem; }
.footer-links { display: flex; gap: 1rem; }
.copy { color: var(--muted); margin: 0; font-size: .9rem; }

@media (max-width: 860px) {
  .biz-hero-grid, .biz-layout, .firm-body { grid-template-columns: 1fr; }
  .firm-stage, .firm-stage--split {
    grid-template-columns: 1fr; min-height: 0; height: auto; max-height: none;
  }
  .firm-shot--lead { min-height: 0; aspect-ratio: 16/10; max-height: min(32vh, 260px); height: auto; }
  .firm-stage-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .firm-stage-side .firm-shot { aspect-ratio: 4/3; height: auto; max-height: 140px; }
  .firm-title { max-width: none; }
  .search-bar, .add-biz-row { grid-template-columns: 1fr; }
  .lang-switch { max-width: 100%; justify-content: flex-start; }
  .sticky { position: static; }
  .hero { min-height: 70vh; align-items: center; }
  .lightbox-prev, .lightbox-next { width: 2.35rem; height: 2.35rem; }
  .breadcrumbs { margin-bottom: .65rem; }
}
