@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Outfit:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@500;600;700&display=swap');

:root {
  --canvas: #f2ebe4;
  --canvas-deep: #e8dfd4;
  --paper: #faf6f1;
  --ink: #3a342f;
  --ink-soft: #5c544c;
  --muted: #8a8178;
  --rose: #a67c78;
  --rose-deep: #8c645f;
  --rose-soft: #c9a8a4;
  --sage: #8b9a82;
  --fog: #8b96a3;
  --mauve: #a3949c;
  --sand: #c4b4a4;
  --glass: #faf6f1;
  --glass-strong: #faf6f1;
  --glass-border: rgba(58, 52, 47, 0.14);
  --line: rgba(58, 52, 47, 0.14);
  --shadow: none;
  --shadow-lift: 0 10px 28px rgba(58, 52, 47, 0.08);
  --radius: 0.2rem;
  --radius-sm: 0.15rem;
  --font-sans: 'Outfit', 'Noto Sans SC', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --page-gutter: clamp(1.1rem, 3vw, 2.25rem);
  --page-max: 72rem;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(166, 124, 120, 0.28);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(166, 124, 120, 0.45);
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

body.page-plaza,
body.content-page {
  background-color: var(--canvas);
  color: var(--ink);
  min-height: 100vh;
  font-family: var(--font-sans);
}

body.page-plaza,
body.content-page,
body.editor-page {
  position: relative;
}

body.page-plaza::before,
body.content-page::before,
body.editor-page::before {
  content: '';
  position: fixed;
  inset: 0 auto 0 0;
  width: 5px;
  pointer-events: none;
  z-index: 80;
  background: var(--rose);
}

body.page-plaza::after,
body.content-page::after,
body.editor-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(58, 52, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 52, 47, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}

.page-plaza > *,
.content-page > *,
.editor-page > * {
  position: relative;
  z-index: 1;
}

.page-plaza > .site-header,
.content-page > .site-header,
.editor-page > .site-header {
  z-index: 50;
}

.glass,
.glass-panel {
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--line);
  box-shadow: none;
}

.site-header-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header {
  padding: 0;
}

.site-header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  min-height: 3.65rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 640px) {
  .site-header-inner {
    padding: 0 var(--page-gutter);
  }
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  text-decoration: none;
}

.site-brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.site-brand-mark img {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0;
}

.site-brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.55rem;
  line-height: 1;
}

.site-brand-kicker {
  order: 2;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.site-brand-name {
  margin-top: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-brand-name span {
  color: var(--rose);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0;
}

.site-nav-main {
  flex: 1;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

.site-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.65rem var(--page-gutter) 0.9rem;
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow-lift);
}

@media (min-width: 768px) {
  .site-nav.is-open {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.48rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
}

.editor-save-status {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--muted);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .editor-save-status {
    display: flex;
  }
}

.site-header-settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
}

.site-header-settings:hover {
  color: var(--ink);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 0;
  transition: color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 var(--rose);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--rose);
}

.nav-link .fa-chevron-down {
  font-size: 0.55rem;
  opacity: 0.55;
}

.nav-dropdown {
  position: relative;
}

.nav-menu {
  display: none;
  min-width: 12rem;
  padding: 0.35rem 0;
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow-lift);
}

.nav-dropdown.is-open .nav-menu {
  display: block;
}

@media (min-width: 768px) {
  .nav-dropdown:hover,
  .nav-dropdown.is-open {
    z-index: 5;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    padding: 0.4rem 0;
    background: var(--paper);
    border-color: var(--line);
    box-shadow: var(--shadow-lift);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-menu {
    display: block;
  }
}

.nav-menu a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
}

.nav-menu a:hover {
  color: var(--ink);
  background: rgba(166, 124, 120, 0.08);
}

.plaza-hero {
  text-align: left;
  padding: 0 0 0.25rem;
}

.plaza-hero:has(.plaza-hero-copy) {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 960px) {
  .plaza-hero:has(.plaza-hero-copy) {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    padding: 0 0 0.25rem;
  }
}

.plaza-hero-copy {
  min-width: 0;
  padding: 2.1rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

.plaza-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 0.85rem;
  backdrop-filter: none;
}

.plaza-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 0.96;
  max-width: 16ch;
}

.plaza-title span {
  font-style: italic;
  color: var(--rose);
}

.plaza-hero-row {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.2rem;
}

@media (min-width: 860px) {
  .plaza-hero-row {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: end;
    gap: 2rem;
  }
}

.plaza-subtitle {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 34rem;
  line-height: 1.75;
}

.plaza-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0;
}

.plaza-hero-actions .btn-primary,
.plaza-hero-actions .btn-secondary {
  padding: 0.72rem 1.2rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.plaza-hero-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .plaza-hero-aside {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plaza-stat-card {
  border-radius: 0;
  padding: 1.15rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

@media (min-width: 720px) {
  .plaza-stat-card {
    padding: 1.2rem 1.25rem 1.25rem 0;
    border-right: 1px solid var(--line);
  }

  .plaza-stat-card:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .plaza-stat-card:first-child {
    padding-left: 0;
  }
}

.plaza-stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.plaza-stat-card span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.plaza-stat-card--accent {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
}

.plaza-stat-card--accent strong {
  color: var(--rose);
}

.plaza-stat-card--accent span {
  color: var(--muted);
}

.plaza-count {
  display: none;
}

.filter-panel {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.15rem 0 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: none;
}

.filter-row {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 720px) {
  .filter-row {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }
}

.filter-row + .filter-row {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
}

.filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
  padding-top: 0.4rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.2rem;
}

.filter-tag {
  padding: 0.32rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

.filter-tag:hover {
  border-color: transparent;
  color: var(--ink);
  background: rgba(166, 124, 120, 0.08);
}

.filter-tag.is-active {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-deep);
  font-weight: 650;
}

.trusted-bar {
  margin-top: 3.25rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.trusted-bar h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
}

.trusted-logos span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.site-footer {
  margin: 0;
  border-top: 2px solid var(--ink);
  background: var(--canvas-deep);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer-main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 2.35rem var(--page-gutter) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 22rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0;
}

.footer-tagline {
  margin: 0.8rem 0 1.05rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-cta .btn-primary,
.footer-cta .btn-secondary {
  padding: 0.48rem 0.9rem;
  font-size: 0.8125rem;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-col a {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--rose-deep);
}

.site-footer-bottom {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.85rem var(--page-gutter) 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer-bottom-links a:hover {
  color: var(--rose-deep);
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.32rem 0.65rem;
}

.site-header .lang-select {
  padding: 0.32rem 0.6rem;
  flex-shrink: 0;
}

.lang-select select {
  background: transparent;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 1rem;
}

.site-header .lang-select select {
  color: var(--ink);
  font-size: 0.8125rem;
}

@media (max-width: 639px) {
  .site-brand-kicker {
    display: none;
  }

  .site-header-inner {
    border-radius: 0;
  }

  .site-header .lang-select {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 0;
    gap: 0;
  }

  .site-header .lang-select select {
    position: absolute;
    inset: 0;
    opacity: 0;
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .site-header .lang-select .fa-chevron-down {
    display: none;
  }
}

.modal-backdrop {
  background: rgba(58, 52, 47, 0.36);
  backdrop-filter: blur(4px);
}

#custom-modal .bg-white,
#custom-modal .rounded-2xl {
  background: var(--paper) !important;
  border: 1px solid var(--line);
  border-radius: 0 !important;
  backdrop-filter: none;
  box-shadow: var(--shadow-lift);
}

#custom-modal h3 {
  color: var(--ink) !important;
}

#custom-modal #modal-msg,
#custom-modal p {
  color: var(--muted) !important;
}

.prose-aura h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.75rem 0 0.75rem;
  scroll-margin-top: 5rem;
}

.prose-aura h2:first-child {
  margin-top: 0;
}

.prose-aura h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}

.prose-aura p,
.prose-aura li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.prose-aura p {
  margin: 0 0 0.85rem;
}

.prose-aura a {
  color: var(--rose-deep);
}

.prose-aura strong {
  color: var(--ink);
  font-weight: 600;
}

.prose-aura code {
  font-size: 0.85em;
  background: rgba(166, 124, 120, 0.1);
  padding: 0.1em 0.35em;
  border-radius: 0.1rem;
  color: var(--ink);
}

.prose-aura table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0.75rem 0 1.25rem;
}

.prose-aura th,
.prose-aura td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.75rem;
  text-align: left;
  color: var(--ink-soft);
}

.prose-aura th {
  background: rgba(166, 124, 120, 0.08);
  color: var(--ink);
}

.faq-hero h1 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .faq-hero h1 {
    font-size: 2.6rem;
  }
}

.faq-hero-lead {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 36rem;
}

.faq-search-wrap {
  position: relative;
  margin-top: 1.5rem;
}

.faq-search-wrap i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.faq-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 1.7rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 0.875rem;
  color: var(--ink);
}

.faq-search:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: none;
}

.faq-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.faq-topic-pill:hover {
  border-color: var(--rose);
  color: var(--ink);
}

.faq-section + .faq-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
}

details.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  overflow: hidden;
}

details.faq-item[open] {
  border-color: var(--line);
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 0.9375rem;
}

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

details.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

details.faq-item .faq-answer,
details.faq-item > p {
  padding: 0 0 1rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.75;
}

details.faq-item .faq-answer a {
  color: var(--rose-deep);
}

details.faq-item.is-hidden {
  display: none;
}

.faq-empty {
  display: none;
  text-align: left;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.875rem;
  background: transparent;
  border: 0;
  border-top: 1px dashed var(--line);
  border-radius: 0;
}

.faq-empty.is-visible {
  display: block;
}

.content-card {
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 2rem;
  box-shadow: none;
}

.content-card h1 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink);
}

.seo-crumb {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.seo-crumb a {
  color: var(--rose-deep);
  text-decoration: none;
}

.editor-header {
  background: var(--paper);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--rose);
  color: #fff8f5;
  font-weight: 600;
  border-radius: 0;
  border: 1px solid var(--rose);
  transition: background 0.18s, color 0.15s, transform 0.15s;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 550;
  border-radius: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.btn-secondary:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  background: rgba(166, 124, 120, 0.08);
}

.editor-page {
  background-color: var(--canvas);
}

.editor-page .site-header-bar {
  padding: 0;
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}

.editor-page .site-header-inner {
  max-width: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  min-height: 3.4rem;
}

.content-page h1,
.content-page .text-slate-900 {
  color: var(--ink) !important;
}

.content-page .text-slate-400 a:hover {
  color: var(--rose-deep) !important;
}

.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;
}

.seo-home {
  margin: 3rem 0 0;
  padding: 1.5rem 0 0;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.seo-home h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.seo-home p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}

.seo-home-facts {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.95rem;
}

.seo-home-facts a,
.seo-home-links a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.seo-home-links {
  margin-top: 1rem !important;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
}

.fact-chips span {
  padding: 0.35rem 1rem 0.35rem 0;
  margin-right: 1rem;
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  backdrop-filter: none;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 550;
}

.fact-chips span:last-child {
  border-right: 0;
  margin-right: 0;
}

.trusted-bar .fact-chips,
.trusted-logos.fact-chips {
  opacity: 1;
  filter: none;
}

.page-mast {
  display: grid;
  gap: 1.15rem;
  padding: 0.15rem 0 1.5rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 1.85rem;
}

@media (min-width: 840px) {
  .page-mast {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    padding-bottom: 1.7rem;
    margin-bottom: 2rem;
  }
}

.page-mast-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.page-mast-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
}

.page-mast-title em,
.page-mast-title span {
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}

.page-mast-lead {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-mast-aside {
  min-width: 10.5rem;
}

.paper,
.paper-sheet {
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.legal-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
  padding: 2.25rem var(--page-gutter) 4rem;
}

.legal-folio {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .legal-folio {
    grid-template-columns: 13.5rem minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.legal-toc {
  display: none;
}

@media (min-width: 900px) {
  .legal-toc {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 5.2rem;
    padding: 0 1rem 0 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
    border-right: 1px solid var(--line);
  }
}

.legal-toc-label {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-toc a {
  display: block;
  padding: 0.5rem 0;
  border-radius: 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.legal-toc a:hover {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--rose);
}

.legal-doc {
  padding: 0;
  background: transparent;
  border: 0;
}

@media (min-width: 768px) {
  .legal-doc {
    padding: 0;
  }
}

.legal-doc h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.85rem 0 0.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 5.5rem;
}

.legal-doc h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-doc p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.legal-doc a {
  color: var(--rose-deep);
}

.legal-updated {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.page-plaza > main,
.content-page > main {
  max-width: var(--page-max);
}

@media (max-width: 639px) {
  body.page-plaza::before,
  body.content-page::before,
  body.editor-page::before {
    width: 3px;
  }
}
