:root {
  --bg: #fbfaf7;
  --bg-warm: #f5efe4;
  --paper: #ffffff;
  --paper-soft: #fffaf0;
  --ink: #11100e;
  --ink-soft: #2a2621;
  --muted: #6d655b;
  --muted-2: #91887a;
  --line: #e8dfd2;
  --line-strong: #d7ccbc;
  --accent: #f2d06b;
  --accent-soft: #fff1b8;
  --sage: #dcead8;
  --rose: #f6ded6;
  --success: #287045;
  --warning: #9a651d;
  --shadow-soft: 0 22px 70px rgba(36, 29, 20, 0.09);
  --shadow-card: 0 18px 40px rgba(36, 29, 20, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 2%, rgba(242, 208, 107, 0.34), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(220, 234, 216, 0.78), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, #f7f1e7 48%, var(--bg) 100%);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(17, 16, 14, 0.12) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 50%);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0 8px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.68) 75%, transparent);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(215, 204, 188, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 42px rgba(36, 29, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 780;
  letter-spacing: -0.02em;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(232, 223, 210, 0.8);
  border-radius: 999px;
  background: rgba(245, 239, 228, 0.7);
  color: var(--muted);
  font-weight: 720;
  font-size: 0.91rem;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.nav-shell > .button {
  justify-self: end;
}

.button,
button {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 16, 14, 0.18);
}

.button--dark:hover {
  background: #000;
  box-shadow: 0 16px 38px rgba(17, 16, 14, 0.24);
}

.button--light {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
  color: var(--ink);
}

.button--light:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.button--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button--small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.text-link,
.link-button {
  color: var(--ink);
  font-weight: 840;
}

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

.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 12px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero::before {
  width: 22rem;
  height: 22rem;
  left: -10rem;
  top: 9rem;
  background: rgba(246, 222, 214, 0.58);
}

.hero::after {
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: 7rem;
  background: rgba(242, 208, 107, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  box-shadow: 0 10px 26px rgba(36, 29, 20, 0.05);
}

.eyebrow--pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 208, 107, 0.24);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 900px;
  margin: 10px 0 22px;
  font-size: clamp(3.35rem, 8.4vw, 6.85rem);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 4.8vw, 4.15rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.7vw, 4.15rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 10px;
}

.hero-note {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 0.96rem;
}

.hero-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-top: 50px;
  padding: 12px;
  border: 1px solid rgba(215, 204, 188, 0.72);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.showcase-main,
.showcase-side,
.principle-card,
.instruction-card,
.faq-list details,
.filters,
.empty-state {
  border: 1px solid rgba(215, 204, 188, 0.74);
  box-shadow: var(--shadow-card);
}

.showcase-main {
  min-height: 390px;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.85)),
    radial-gradient(circle at 80% 18%, rgba(242, 208, 107, 0.2), transparent 18rem);
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-bar span:nth-child(1) { background: #f36b5f; }
.window-bar span:nth-child(2) { background: #f2c55c; }
.window-bar span:nth-child(3) { background: #79bf80; }

.mock-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted-2);
  font-weight: 720;
}

.mock-search__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
}

.mock-listing {
  margin-top: 18px;
  padding: 23px;
  border-radius: 27px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 22px 52px rgba(17, 16, 14, 0.22);
}

.mock-listing strong {
  display: block;
  margin: 5px 0 8px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mock-listing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mini-label,
.side-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-label {
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.74);
}

.mock-status {
  flex: none;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-row-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 16px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.mock-row span,
.mock-row b {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e9dfcf;
}

.mock-row b {
  height: 28px;
  background: #efe7da;
}

.mock-row:nth-child(2) span { width: 74%; }
.mock-row:nth-child(3) span { width: 86%; }

.showcase-side {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 241, 184, 0.8), transparent 12rem),
    var(--paper-soft);
}

.showcase-side h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.side-kicker {
  margin-bottom: 18px;
  background: var(--sage);
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.showcase-side .text-link {
  margin-top: auto;
}

.principles {
  padding: 22px 0 58px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.principle-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 22px;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.62);
}

.principle-card span,
.card-number {
  color: var(--muted-2);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.4rem;
}

.principle-card strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-panel {
  position: relative;
  padding: 72px 0;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(232, 223, 210, 0.8);
  border-bottom: 1px solid rgba(232, 223, 210, 0.8);
}

.directory-section,
.claim-section,
.faq-section {
  padding: 56px 0;
}

.directory-section {
  padding-top: 32px;
}

.directory-section .section-heading {
  margin-bottom: 22px;
}

.directory-section .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
}

.directory-section .section-heading p:not(.eyebrow) {
  margin-bottom: 10px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.claim-intro p,
.faq-list p,
.instruction-card p,
.footer-grid p {
  color: var(--muted);
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.filters {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(190px, 0.75fr));
  gap: 14px;
  align-items: stretch;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.filters label {
  min-width: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

label > span {
  display: block;
  padding-left: 3px;
  line-height: 1;
  white-space: nowrap;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background-color: #fff;
  color: var(--ink);
  padding: 11px 15px;
  font: inherit;
  font-weight: 720;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 6px 18px rgba(36, 29, 20, 0.04);
}

select {
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  padding-right: 44px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L7 7L12.5 1.5' stroke='%2311100E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;
}

input::placeholder {
  color: var(--muted-2);
}

input:focus,
select:focus,
.button:focus-visible,
.link-button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 208, 107, 0.45);
  outline-offset: 3px;
}

.methodology-note {
  margin: 18px 4px 0;
  padding: 14px 16px;
  border: 1px solid rgba(215, 204, 188, 0.74);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.methodology-note strong {
  color: var(--ink);
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 4px 22px;
  color: var(--muted);
  font-weight: 780;
}

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

.sort-status {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.table-shell {
  max-height: 760px;
  overflow: auto;
  border: 1px solid rgba(215, 204, 188, 0.78);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.firm-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}

.firm-table th,
.firm-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.firm-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(251, 250, 247, 0.98);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 var(--line);
}

.firm-table tbody tr {
  transition: background 140ms ease;
}

.firm-table tbody tr:hover {
  background: rgba(255, 250, 240, 0.88);
}

.firm-table tbody tr:last-child td {
  border-bottom: 0;
}

.sort-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-align: left;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.sort-button:hover {
  color: var(--ink);
}

.sort-indicator {
  display: inline-flex;
  min-width: 12px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1;
}

.table-firm-link {
  color: var(--ink);
  font-weight: 860;
  line-height: 1.25;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.location-cell {
  color: var(--ink-soft);
  font-weight: 720;
  min-width: 130px;
}

.activity-cell {
  min-width: 230px;
}

.activity-chip {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--warning);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.activity-cell small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.wrap-cell {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.45;
}

.people-cell {
  max-width: 300px;
}

.status-cell {
  min-width: 120px;
}

.actions-cell {
  min-width: 170px;
}

.table-action-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 6px 7px 0;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 860;
  line-height: 1;
  text-decoration: none;
}

.table-action-link:hover {
  background: #fff;
}

.status-pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.status-pill--verified {
  background: var(--sage);
  color: var(--success);
}

.status-pill--unclaimed {
  background: var(--accent-soft);
  color: var(--warning);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 52px 36px;
  border-style: dashed;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 208, 107, 0.24), transparent 20rem),
    rgba(255, 255, 255, 0.76);
  text-align: center;
}

.empty-state h3 {
  max-width: 680px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.empty-state p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.claim-section {
  padding: 86px 0;
}

.claim-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) repeat(2, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.claim-intro {
  align-self: center;
  padding-right: 16px;
}

.instruction-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
}

.instruction-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(220, 234, 216, 0.55);
  pointer-events: none;
}

.instruction-card--warm {
  background: var(--paper-soft);
}

.instruction-card--warm::after {
  background: rgba(242, 208, 107, 0.45);
}

.instruction-card > * {
  position: relative;
  z-index: 1;
}

.card-number {
  display: block;
  margin-bottom: 24px;
}

.instruction-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.section-panel--dark {
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(242, 208, 107, 0.18), transparent 22rem),
    var(--ink);
  border: 0;
}

.section-panel--dark h2,
.section-panel--dark h3,
.section-panel--dark .eyebrow {
  color: #fff;
}

.section-panel--dark .section-heading p:not(.eyebrow),
.section-panel--dark .faq-list p {
  color: rgba(255, 255, 255, 0.66);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

summary {
  cursor: pointer;
  font-weight: 860;
}

summary::marker {
  color: var(--accent);
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 38px 0;
  background: #0a0908;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
  gap: 30px;
}

.footer-grid p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-disclaimer {
  font-size: 0.92rem;
}

.footer-disclaimer a,
.instruction-card a:not(.button) {
  text-underline-offset: 4px;
}

@media (max-width: 960px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  .hero-showcase,
  .principle-grid,
  .claim-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 28px;
  }

  .search-field {
    grid-column: 1 / -1;
  }

  .showcase-side,
  .showcase-main {
    min-height: auto;
  }

  .claim-intro {
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
  }

  .brand {
    width: 100%;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav-links,
  .nav-shell > .button {
    width: 100%;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }

  .hero-actions,
  .results-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-showcase {
    margin-top: 36px;
    padding: 8px;
    border-radius: 30px;
  }

  .showcase-main,
  .showcase-side,
  .instruction-card,
  .empty-state {
    padding: 20px;
    border-radius: 24px;
  }

  .mock-listing {
    flex-direction: column;
  }

  .mock-row {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 24px;
  }

  .search-field {
    grid-column: auto;
  }

  .directory-section,
  .claim-section,
  .faq-section,
  .section-panel {
    padding: 56px 0;
  }
}

.answer-section {
  padding: 22px 0 76px;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.answer-copy,
.answer-card,
.detail-panel,
.directory-list-panel,
.page-card {
  border: 1px solid rgba(215, 204, 188, 0.74);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.answer-copy {
  padding: clamp(26px, 4vw, 44px);
}

.answer-copy p:not(.eyebrow),
.detail-panel p,
.page-card p,
.directory-list-panel p {
  color: var(--muted);
}

.answer-card {
  padding: 28px;
  background:
    radial-gradient(circle at 80% 12%, rgba(242, 208, 107, 0.36), transparent 12rem),
    var(--paper-soft);
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-links a,
.inline-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 820;
  font-size: 0.91rem;
  text-decoration: none;
}

.location-links a:hover {
  background: #fff;
}

.page-hero {
  padding: 62px 0 42px;
}

.page-hero__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 740;
}

.breadcrumbs a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 76px;
}

.detail-panel,
.directory-list-panel,
.page-card {
  padding: clamp(24px, 4vw, 36px);
}

.fact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.fact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-list dt {
  color: var(--muted-2);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
}

.activity-callout {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--paper-soft);
}

.activity-callout strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.claim-box {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 108px;
}

.claim-box .button {
  width: 100%;
}

.directory-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.directory-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.directory-list__item:hover {
  background: #fff;
}

.directory-list__item strong {
  display: block;
  margin-bottom: 3px;
}

.directory-list__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.directory-list__item em {
  color: var(--warning);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 880;
}

@media (max-width: 960px) {
  .answer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .claim-box {
    position: static;
  }
}

@media (max-width: 620px) {
  .answer-section,
  .page-hero {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .fact-list div,
  .directory-list__item {
    grid-template-columns: 1fr;
  }
}

.location-links--center {
  justify-content: center;
  margin-top: 10px;
}
