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

:root {
  --brand-accent: #f2bc09;
  --brand-accent-soft: rgba(242, 188, 9, 0.15);
  --brand-bg: #f7f7f5;
  --brand-surface: #ffffff;
  --brand-text: #0a0a0a;
  --brand-muted: #5c5c58;
  --brand-border: #e8e8e4;
  --brand-success: #16a34a;
  --brand-warning: #d97706;
  --brand-danger: #dc2626;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 20px rgb(0 0 0 / 0.06);
  --shadow-hover: 0 12px 32px rgb(0 0 0 / 0.1);
  --header-h: 64px;
  --max-w: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--font);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Layout */
.public-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-border);
  border-top: 4px solid var(--brand-accent);
}

.public-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.public-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.public-brand__logo {
  height: 34px;
  width: auto;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  font-size: 0.9rem;
}

.public-nav a {
  text-decoration: none;
  color: var(--brand-muted);
  padding: 0.35rem 0;
}

.public-nav a:hover,
.public-nav a.is-active {
  color: var(--brand-text);
}

.public-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.public-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.public-main {
  flex: 1;
}

.public-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  line-height: 1.3;
}

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

.btn--primary {
  background: var(--brand-accent);
  color: var(--brand-text);
  box-shadow: 0 2px 8px rgb(242 188 9 / 0.35);
}

.btn--primary:hover {
  box-shadow: 0 4px 14px rgb(242 188 9 / 0.45);
}

.btn--secondary {
  background: var(--brand-surface);
  color: var(--brand-text);
  border-color: var(--brand-border);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-muted);
  border-color: var(--brand-border);
}

.btn--sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
}

/* Event booking */
.booking-cta {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.booking-status {
  pointer-events: none;
  text-align: center;
}

.booking-status--booked {
  background: rgb(22 163 74 / 0.12);
  border-color: rgb(22 163 74 / 0.35);
  color: var(--brand-success);
  font-weight: 600;
}

.booking-status--sold-out {
  color: var(--brand-danger);
}

.booking-status__icon {
  margin-right: 0.35rem;
}

.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1rem) 1rem 1rem;
  background: rgb(0 0 0 / 0.55);
  backdrop-filter: blur(4px);
  animation: booking-fade-in 0.2s ease;
}

.booking-modal {
  position: relative;
  width: min(100%, 480px);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: var(--brand-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgb(0 0 0 / 0.2);
  animation: booking-slide-up 0.25s ease;
}

.booking-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--brand-text);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.booking-modal__close:hover {
  background: #fff;
}

.booking-modal__hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.booking-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-modal__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1.25rem;
  background: linear-gradient(to top, rgb(0 0 0 / 0.75) 0%, transparent 60%);
}

.booking-modal__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #fff;
}

.booking-modal__body {
  padding: 1.25rem 1.5rem;
}

.booking-modal__meta {
  display: grid;
  gap: 0.85rem;
}

.booking-modal__meta-item {
  display: grid;
  gap: 0.15rem;
}

.booking-modal__meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-muted);
}

.booking-modal__meta-value {
  font-size: 0.95rem;
  color: var(--brand-text);
}

.booking-modal__meta-value--accent {
  font-weight: 700;
  color: var(--brand-success);
}

.booking-modal__description {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--brand-border);
}

.booking-modal__description h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.booking-modal__description p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
  line-height: 1.55;
}

.booking-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
}

.booking-modal__hint {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  color: var(--brand-muted);
  text-align: center;
}

@keyframes booking-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes booking-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.public-hero {
  background: linear-gradient(135deg, var(--brand-surface) 0%, #fff9e6 100%);
  border-bottom: 1px solid var(--brand-border);
  padding: 3rem 1.25rem 3.5rem;
}

.public-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .public-hero__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.public-hero__eyebrow {
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.public-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.public-hero__subtitle {
  font-size: 1.05rem;
  color: var(--brand-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.public-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page banners / slider */
.page-banner {
  width: 100%;
  overflow: hidden;
}

.page-banner--hero {
  border-bottom: 1px solid var(--brand-border);
}

.page-banner--strip {
  margin-bottom: 1.25rem;
}

.page-banner__viewport {
  position: relative;
  width: 100%;
}

.page-banner__track {
  position: relative;
}

.page-banner__slide {
  display: none;
  position: relative;
  width: 100%;
}

.page-banner__slide.is-active {
  display: block;
}

.page-banner--hero .page-banner__slide {
  min-height: clamp(220px, 42vw, 420px);
}

.page-banner--strip .page-banner__slide {
  min-height: clamp(140px, 24vw, 240px);
}

.page-banner__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.page-banner__placeholder {
  width: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, #fff9e6 0%, #f2bc09 55%, #e8a800 100%);
  position: relative;
  overflow: hidden;
}

.page-banner__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgb(255 255 255 / 0.45) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgb(0 0 0 / 0.08) 0%, transparent 36%);
}

.page-banner__placeholder::after {
  content: "◆";
  position: absolute;
  right: 8%;
  bottom: 18%;
  font-size: clamp(3rem, 10vw, 6rem);
  color: rgb(255 255 255 / 0.22);
  line-height: 1;
}

.page-banner__placeholder--home {
  background: linear-gradient(135deg, #fffdf5 0%, #f2bc09 48%, #d9a000 100%);
}

.page-banner__placeholder--events {
  background: linear-gradient(135deg, #fff8e8 0%, #f2bc09 40%, #c98f00 100%);
}

.page-banner__placeholder--businesses {
  background: linear-gradient(135deg, #fff9ee 0%, #f5c842 45%, #b8860b 100%);
}

.page-banner__placeholder--ecclesias {
  background: linear-gradient(135deg, #fffaf0 0%, #f2bc09 50%, #a67c00 100%);
}

.page-banner__placeholder--products {
  background: linear-gradient(135deg, #fff7e6 0%, #f2bc09 42%, #cc9600 100%);
}

.public-quote--landing {
  margin: 0 0 1.5rem;
}

.site-banner-admin-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgb(0 0 0 / 0.55);
  background: linear-gradient(135deg, #fff9e6 0%, #f2bc09 100%);
}

.site-banner-admin-placeholder--home { background: linear-gradient(135deg, #fffdf5 0%, #f2bc09 100%); }
.site-banner-admin-placeholder--events { background: linear-gradient(135deg, #fff8e8 0%, #f2bc09 100%); }
.site-banner-admin-placeholder--businesses { background: linear-gradient(135deg, #fff9ee 0%, #f5c842 100%); }
.site-banner-admin-placeholder--ecclesias { background: linear-gradient(135deg, #fffaf0 0%, #f2bc09 100%); }
.site-banner-admin-placeholder--products { background: linear-gradient(135deg, #fff7e6 0%, #f2bc09 100%); }

.page-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgb(0 0 0 / 0.72) 0%, rgb(0 0 0 / 0.15) 55%, transparent 100%);
}

.page-banner__content {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  color: #fff;
}

.page-banner--strip .page-banner__content {
  padding: 1rem 1.25rem 1.35rem;
}

.page-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 700;
}

.page-banner--strip .page-banner__title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}

.page-banner__subtitle {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgb(255 255 255 / 0.9);
}

.page-banner--strip .page-banner__subtitle {
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}

.page-banner__cta {
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.2);
}

.page-banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--brand-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.page-banner__nav--prev {
  left: 0.75rem;
}

.page-banner__nav--next {
  right: 0.75rem;
}

.page-banner__nav:hover {
  background: #fff;
}

.page-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}

.page-banner__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.45);
  cursor: pointer;
}

.page-banner__dot.is-active {
  width: 1.35rem;
  background: var(--brand-accent);
}

.public-quote {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--brand-accent);
}

.public-quote__text {
  font-style: italic;
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.public-quote__author {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

/* Sections */
.public-section {
  margin-bottom: 2.5rem;
}

.public-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.public-section__title {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
}

.public-section__link {
  font-size: 0.9rem;
  color: var(--brand-muted);
  text-decoration: none;
  white-space: nowrap;
}

.public-section__link:hover {
  color: var(--brand-text);
  text-decoration: underline;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.listing-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.listing-card__media {
  aspect-ratio: 16 / 9;
  background: var(--brand-bg);
  overflow: hidden;
  position: relative;
}

.listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--brand-accent);
  color: var(--brand-text);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.listing-card__body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.listing-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

.listing-card__meta {
  font-size: 0.82rem;
  color: var(--brand-muted);
  margin: 0;
}

.listing-card__price {
  font-weight: 700;
  color: var(--brand-text);
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Filters */
.filter-bar {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-muted);
  flex: 1;
  min-width: 140px;
}

.filter-bar input,
.filter-bar select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--brand-bg);
  color: var(--brand-text);
}

/* Ecclesia filters */
.ecclesia-page-header__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ecclesia-toolbar {
  margin-bottom: 1.5rem;
}

.ecclesia-toolbar__search {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.ecclesia-toolbar__search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 0.55rem 0.9rem;
}

.ecclesia-toolbar__search-icon {
  color: var(--brand-muted);
  font-size: 1.1rem;
  line-height: 1;
}

.ecclesia-toolbar__search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--brand-text);
  min-width: 0;
}

.ecclesia-toolbar__search-field input:focus {
  outline: none;
}

.ecclesia-toolbar__filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  background: var(--brand-surface);
  color: var(--brand-text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.ecclesia-toolbar__filters-btn:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
}

.ecclesia-toolbar__filters-icon {
  color: var(--brand-accent);
}

.ecclesia-toolbar__filters-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--brand-accent);
  color: var(--brand-text);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.ecclesia-filters-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(3px);
}

.ecclesia-filters-backdrop[hidden] {
  display: none !important;
}

.ecclesia-filters {
  width: min(100%, 520px);
  max-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  background: var(--brand-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -8px 40px rgb(0 0 0 / 0.18);
  animation: ecclesia-filters-slide-up 0.25s ease;
}

@media (min-width: 640px) {
  .ecclesia-filters-backdrop {
    align-items: center;
    padding: calc(var(--header-h) + 1rem) 1rem 1rem;
  }

  .ecclesia-filters {
    border-radius: var(--radius-lg);
    max-height: min(88vh, 820px);
  }
}

@keyframes ecclesia-filters-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ecclesia-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 0.75rem;
  border-bottom: 1px solid var(--brand-border);
}

.ecclesia-filters__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ecclesia-filters__title-icon {
  color: var(--brand-accent);
  font-size: 1.1rem;
}

.ecclesia-filters__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.ecclesia-filters__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-bg);
  color: var(--brand-text);
  cursor: pointer;
  font-size: 1rem;
}

.ecclesia-filters__close:hover {
  background: var(--brand-border);
}

.ecclesia-filters__form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.ecclesia-filters__body {
  overflow: auto;
  padding: 0.85rem 1.15rem 1rem;
  display: grid;
  gap: 1.15rem;
}

.ecclesia-filters__section {
  display: grid;
  gap: 0.65rem;
}

.ecclesia-filters__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ecclesia-filters__hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.ecclesia-filters__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  background: var(--brand-bg);
}

.ecclesia-filters__search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  min-width: 0;
}

.ecclesia-filters__search input:focus {
  outline: none;
}

.ecclesia-filters__search-icon {
  color: var(--brand-muted);
}

.ecclesia-filters__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.ecclesia-filters__chips--wrap {
  flex-wrap: wrap;
  overflow: visible;
}

.ecclesia-filter-chip {
  position: relative;
  flex-shrink: 0;
}

.ecclesia-filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ecclesia-filter-chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  background: var(--brand-surface);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-text);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ecclesia-filter-chip input:checked + span {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--brand-text);
}

.ecclesia-filter-chip--sm span {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
}

.ecclesia-filters__field {
  display: grid;
  gap: 0.3rem;
}

.ecclesia-filters__field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-muted);
}

.ecclesia-filters__field input,
.ecclesia-filters__field select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--brand-bg);
  font-size: 0.9rem;
  color: var(--brand-text);
}

.ecclesia-filters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

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

.event-filters__when-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.event-filters__custom-range-btn {
  border: none;
  background: transparent;
  color: var(--brand-accent);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.event-filters__date-range {
  display: grid;
  gap: 0.5rem;
}

.event-filters__map-search {
  margin-top: 0.35rem;
}

.event-filters__near-me-box {
  margin-top: 0.65rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  display: grid;
  gap: 0.65rem;
}

.ecclesia-filters__geo-btn {
  margin-top: 0.15rem;
}

.ecclesia-filters__geo-status {
  margin: 0;
  font-size: 0.82rem;
  color: var(--brand-success);
}

.ecclesia-filters__radius {
  display: grid;
  gap: 0.5rem;
}

.ecclesia-filters__radius-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.ecclesia-filters__unit-toggle {
  display: flex;
  gap: 0.35rem;
}

.ecclesia-filters__radius-value {
  margin-left: auto;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--brand-accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.ecclesia-filters__radius input[type="range"] {
  width: 100%;
  accent-color: var(--brand-accent);
}

.ecclesia-filters__footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem 1.15rem;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-surface);
}

.ecclesia-filters__reset {
  text-align: center;
  text-decoration: none;
}

.ecclesia-filters__apply {
  font-weight: 700;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--brand-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand-text);
  text-decoration: underline;
}

.breadcrumbs__sep {
  margin: 0 0.35rem;
}

/* Page header */
.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.35rem;
}

.page-header p {
  margin: 0;
  color: var(--brand-muted);
}

/* Detail layout */
.detail-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .detail-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.detail-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.detail-sidebar {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.detail-sidebar h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--brand-muted);
  margin-bottom: 1rem;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.detail-body {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

.detail-body h2 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.detail-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  color: var(--brand-muted);
}

.detail-chip--accent {
  background: var(--brand-accent-soft);
  border-color: rgb(242 188 9 / 0.4);
  color: var(--brand-text);
}

.detail-chip--price {
  background: var(--brand-text);
  color: #fff;
  border-color: var(--brand-text);
}

.detail-gallery-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.detail-gallery { position: relative; }
.detail-gallery__placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-bg);
  color: var(--brand-muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
}
.detail-gallery__featured {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brand-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.detail-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.detail-thumbs__btn {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: none;
}
.detail-thumbs__btn.is-active { border-color: var(--brand-accent); }
.detail-thumbs__btn img { width: 88px; height: 62px; object-fit: cover; display: block; }

.detail-section-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin-top: 1.25rem;
  box-shadow: var(--shadow-card);
}
.detail-section-card__title { font-size: 1.05rem; margin: 0 0 1rem; font-weight: 700; }

.detail-info-grid { margin: 0; display: grid; gap: 0.65rem; }
.detail-info-grid__row {
  display: grid;
  grid-template-columns: minmax(110px, 34%) 1fr;
  gap: 0.5rem 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--brand-border);
}
.detail-info-grid__row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-info-grid dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-muted);
}
.detail-info-grid dd { margin: 0; font-size: 0.92rem; word-break: break-word; }

.detail-prose { font-size: 0.95rem; line-height: 1.7; }
.detail-social { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.detail-social__link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--brand-bg);
}
.detail-social__link:hover { border-color: var(--brand-accent); background: var(--brand-accent-soft); }

.detail-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.detail-contact-list li { display: grid; gap: 0.15rem; }
.detail-contact-list__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-muted);
}
.detail-contact-list a { text-decoration: none; font-size: 0.92rem; }
.detail-contact-list a:hover { text-decoration: underline; }

.detail-location__address { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.detail-location__coords { margin: 0.5rem 0 0; font-size: 0.8rem; color: var(--brand-muted); }

.detail-review { padding: 1rem 0; border-bottom: 1px solid var(--brand-border); }
.detail-review:last-child { border-bottom: none; padding-bottom: 0; }
.detail-review__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.detail-review__stars { color: var(--brand-accent); font-weight: 700; }
.detail-review__author { font-weight: 600; font-size: 0.9rem; }
.detail-review__text { margin: 0; color: var(--brand-muted); font-size: 0.9rem; line-height: 1.55; }

.detail-list-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.detail-list-tags span {
  font-size: 0.82rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
}

.detail-columns { display: grid; gap: 1.25rem; margin-top: 1.25rem; }
@media (min-width: 768px) {
  .detail-columns--2 { grid-template-columns: 1fr 1fr; }
}

.detail-sidebar__price { font-size: 1.5rem; font-weight: 700; margin: 0.5rem 0 0; }
.detail-organizer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-border);
  font-size: 0.88rem;
  color: var(--brand-muted);
}
.detail-organizer strong { color: var(--brand-text); }

@media (max-width: 640px) {
  .detail-info-grid__row { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* Rating */
.star-rating {
  display: flex;
  gap: 0.15rem;
  font-size: 1.25rem;
}

.star-rating button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-border);
  padding: 0;
}

.star-rating button.is-active,
.star-rating button:hover {
  color: var(--brand-accent);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--brand-surface);
  border: 1px dashed var(--brand-border);
  border-radius: var(--radius-lg);
  color: var(--brand-muted);
}

.empty-state__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

/* Pagination */
.pagination-wrap,
.panel-pagination,
.chat-inbox__pagination {
  display: flex;
  justify-content: center;
}

.pagination-wrap {
  margin-top: 2rem;
}

.panel-pagination {
  margin-top: 1rem;
}

.pagination-wrap nav,
.panel-pagination nav,
.chat-inbox__pagination nav {
  display: flex;
  justify-content: center;
}

.pagination-wrap .pagination,
.panel-pagination .pagination,
.chat-inbox__pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-wrap .page-item,
.panel-pagination .page-item,
.chat-inbox__pagination .page-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-wrap .page-link,
.panel-pagination .page-link,
.chat-inbox__pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.85rem;
  background: var(--brand-surface);
  color: var(--brand-text);
  line-height: 1.2;
}

.pagination-wrap .page-item.active .page-link,
.panel-pagination .page-item.active .page-link,
.chat-inbox__pagination .page-item.active .page-link {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  font-weight: 600;
}

.pagination-wrap .page-item.disabled .page-link,
.panel-pagination .page-item.disabled .page-link,
.chat-inbox__pagination .page-item.disabled .page-link {
  opacity: 0.45;
  cursor: default;
}

.pagination-wrap .page-link:hover,
.panel-pagination .page-link:hover,
.chat-inbox__pagination .page-link:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
}

.pagination-wrap .page-item.disabled .page-link:hover,
.panel-pagination .page-item.disabled .page-link:hover,
.chat-inbox__pagination .page-item.disabled .page-link:hover {
  border-color: var(--brand-border);
  background: var(--brand-surface);
}

/* Footer */
.public-footer {
  border-top: 1px solid var(--brand-border);
  background: var(--brand-surface);
  padding: 2rem 1.25rem;
  margin-top: auto;
}

.public-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .public-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.public-footer h3 {
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

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

.public-footer li {
  margin-bottom: 0.4rem;
}

.public-footer a {
  color: var(--brand-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.public-footer a:hover {
  color: var(--brand-text);
}

.public-footer__bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--brand-border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

/* Panel layout */
.panel-page {
  min-height: 100vh;
  display: flex;
  background: var(--brand-bg);
}

.panel-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--brand-surface);
  border-right: 1px solid var(--brand-border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.panel-sidebar__brand {
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 0.75rem;
}

.panel-sidebar__brand a {
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  color: var(--brand-muted);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.panel-nav a:hover,
.panel-nav a.is-active {
  color: var(--brand-text);
  background: var(--brand-accent-soft);
  border-left-color: var(--brand-accent);
}

.panel-main {
  flex: 1;
  min-width: 0;
  padding: 1.5rem 1.75rem 2.5rem;
}

.panel-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.panel-kpi {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.panel-kpi:hover {
  box-shadow: var(--shadow-hover);
}

.panel-kpi__label {
  font-size: 0.78rem;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel-kpi__value {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.25rem 0 0;
}

.panel-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-card);
}

.panel-card h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.panel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.panel-table th,
.panel-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--brand-border);
}

.panel-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-muted);
}

.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.status-badge--posted { background: #dcfce7; color: #166534; }
.status-badge--pending { background: #fef3c7; color: #92400e; }
.status-badge--rejected { background: #fee2e2; color: #991b1b; }

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert--success { background: #dcfce7; border: 1px solid #bbf7d0; color: #166534; }
.alert--warning { background: #fef3c7; border: 1px solid #fde68a; color: #92400e; }

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--brand-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
}

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

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--brand-danger);
}

.form-error {
  color: var(--brand-danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 220px);
  min-height: 420px;
}

.chat-panel {
  padding: 0;
  overflow: hidden;
}

.chat-header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--brand-border);
  background: var(--brand-surface);
}

.chat-header__main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.chat-header__back {
  padding: 0.4rem 0.55rem;
  flex-shrink: 0;
}

.chat-header__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-muted);
}

.chat-header__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-header__info {
  min-width: 0;
}

.chat-header__name {
  display: block;
  font-size: 0.95rem;
}

.chat-header__topic {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--brand-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: linear-gradient(180deg, var(--brand-bg) 0%, var(--brand-surface) 100%);
}

.chat-messages__empty {
  margin: auto;
  text-align: center;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.chat-bubble {
  max-width: min(75%, 420px);
  padding: 0.65rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-bubble--mine {
  align-self: flex-end;
  background: var(--brand-accent-soft);
  border: 1px solid rgb(242 188 9 / 0.35);
  border-bottom-right-radius: 0.35rem;
}

.chat-bubble--theirs {
  align-self: flex-start;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-bottom-left-radius: 0.35rem;
  box-shadow: var(--shadow-card);
}

.chat-bubble__text {
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-bubble__image img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin-top: 0.35rem;
}

.chat-bubble__time {
  display: block;
  font-size: 0.68rem;
  color: var(--brand-muted);
  margin-top: 0.35rem;
}

.chat-compose-preview {
  position: relative;
  display: inline-flex;
  margin: 0 1rem;
  padding-top: 0.65rem;
}

.chat-compose-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-border);
}

.chat-compose-preview__remove {
  position: absolute;
  top: 0.45rem;
  right: -0.35rem;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--brand-text);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.chat-compose {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-surface);
}

.chat-compose__attach {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--brand-border);
  background: var(--brand-bg);
  color: var(--brand-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.chat-compose__attach:hover {
  border-color: var(--brand-accent);
  color: var(--brand-text);
  background: var(--brand-accent-soft);
}

.chat-compose__attach-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.chat-compose__input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--brand-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.chat-compose__input:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px var(--brand-accent-soft);
}

.chat-compose__send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--brand-text);
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(242 188 9 / 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.chat-compose__send:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgb(242 188 9 / 0.45);
}

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

.chat-compose__loading {
  font-size: 1.1rem;
  font-weight: 700;
}

.chat-compose__error {
  padding: 0 1rem 0.75rem;
}

/* Chat inbox */
.chat-inbox__card {
  padding: 0;
  overflow: hidden;
}

.chat-inbox__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--brand-border);
}

.chat-inbox__header h2 {
  margin-bottom: 0.2rem;
}

.chat-inbox__filter select {
  min-width: 140px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--brand-bg);
}

.chat-inbox__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.chat-inbox__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--brand-border);
  transition: background 0.15s;
}

.chat-inbox__item:hover {
  background: var(--brand-bg);
}

.chat-inbox__item--unread {
  background: rgb(242 188 9 / 0.06);
}

.chat-inbox__item--unread:hover {
  background: rgb(242 188 9 / 0.1);
}

.chat-inbox__avatar {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
}

.chat-inbox__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-inbox__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-muted);
}

.chat-inbox__unread-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-accent);
  border: 2px solid var(--brand-surface);
}

.chat-inbox__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.chat-inbox__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.chat-inbox__name {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-inbox__item--unread .chat-inbox__name {
  font-weight: 700;
}

.chat-inbox__time {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--brand-muted);
}

.chat-inbox__topic {
  font-size: 0.78rem;
  color: var(--brand-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-inbox__topic-badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
}

.chat-inbox__preview {
  font-size: 0.82rem;
  color: var(--brand-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-inbox__item--unread .chat-inbox__preview {
  color: var(--brand-text);
  font-weight: 500;
}

.chat-inbox__badge {
  flex-shrink: 0;
  min-width: 22px;
  height: 22px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--brand-accent);
  color: var(--brand-text);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-inbox__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--brand-muted);
}

.chat-inbox__empty-icon {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--brand-border);
}

.chat-inbox__empty p {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-text);
}

.chat-inbox__pagination {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--brand-border);
  margin-top: 0;
}

/* Panel edit layout */
.panel-edit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.panel-edit-header__title {
  margin: 0.5rem 0 0.15rem;
  font-size: 1.35rem;
}

.panel-edit-header__slug {
  margin: 0;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.panel-edit-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .panel-edit-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

.panel-edit-layout__main {
  margin-bottom: 0;
}

.panel-edit-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-form-section {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--brand-border);
}

.panel-form-section:first-child {
  padding-top: 0;
}

.panel-form-section h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-muted);
}

.panel-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 1.25rem;
}

.panel-form-section--last {
  border-bottom: none;
  padding-bottom: 0;
}

.panel-form-section__optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.78rem;
  color: var(--brand-muted);
  opacity: 0.85;
}

.panel-readonly-field {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--brand-bg);
  font-size: 0.9rem;
  color: var(--brand-text);
}

.form-grid--price {
  display: grid;
  gap: 1rem;
  max-width: 280px;
  grid-template-columns: minmax(0, 1fr) 5.5rem;
}

.panel-input--currency {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.panel-product-images__dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-align: center;
}

.panel-product-images__dropzone .panel-media-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.panel-product-images__dropzone .panel-media-dropzone__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.4;
}

.panel-product-images__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.panel-product-images__tile {
  margin: 0;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--brand-surface);
}

.panel-product-images__tile--removed {
  opacity: 0.45;
}

.panel-product-images__tile--removed .panel-product-images__thumb img {
  filter: grayscale(1);
}

.panel-product-images__thumb {
  aspect-ratio: 4 / 3;
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-product-images__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-product-images__placeholder {
  font-size: 1.5rem;
  opacity: 0.5;
}

.panel-product-images__meta {
  padding: 0.45rem 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: stretch;
}

.panel-product-images__name {
  font-size: 0.72rem;
  color: var(--brand-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--brand-muted);
}

.form-hint--warning {
  color: var(--brand-warning);
}

.panel-location-field__wrap {
  position: relative;
  display: block;
  width: 100%;
}

.panel-location-field__wrap--disabled {
  opacity: 0.7;
}

.panel-location-field__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--brand-muted);
  pointer-events: none;
  z-index: 1;
}

.form-group .panel-location-field__wrap .panel-location-search__input,
.panel-location-search__input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem 0.65rem 2.75rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--brand-bg);
  color: var(--brand-text);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-group .panel-location-field__wrap .panel-location-search__input::placeholder,
.panel-location-search__input::placeholder {
  color: var(--brand-muted);
  opacity: 1;
}

.form-group .panel-location-field__wrap .panel-location-search__input:hover:not(:disabled),
.panel-location-search__input:hover:not(:disabled) {
  border-color: rgb(242 188 9 / 0.45);
}

.form-group .panel-location-field__wrap .panel-location-search__input:focus,
.panel-location-search__input:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: var(--brand-surface);
  box-shadow: 0 0 0 3px var(--brand-accent-soft);
}

.form-group .panel-location-field__wrap .panel-location-search__input:disabled,
.panel-location-search__input:disabled {
  cursor: not-allowed;
  background: var(--brand-bg);
}

.form-group--span-2 {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .form-grid .form-group--span-2 {
    grid-column: span 2;
  }
}

.panel-media-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .panel-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.panel-media-dropzone {
  display: block;
  position: relative;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--brand-border);
  border-radius: var(--radius-md);
  background: var(--brand-bg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.panel-media-dropzone:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
}

.panel-media-dropzone--error {
  border-color: var(--brand-danger);
}

.panel-media-dropzone--loading {
  opacity: 0.7;
  pointer-events: none;
}

.panel-media-input {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.82rem;
}

.panel-media-dropzone__label {
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.panel-media-preview {
  margin: 0.75rem 0 0;
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}

.panel-media-preview img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-border);
  object-fit: cover;
  background: var(--brand-bg);
}

.panel-media-preview--logo img {
  width: 88px;
  height: 88px;
}

.panel-media-preview--cover img {
  width: 100%;
  max-width: 220px;
  height: 72px;
}

.panel-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--brand-muted);
  cursor: pointer;
}

.panel-products-card h2 {
  margin: 0;
  font-size: 1rem;
}

.panel-products-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.panel-products-empty {
  text-align: center;
  padding: 1.25rem 0.5rem;
  color: var(--brand-muted);
  font-size: 0.88rem;
}

.panel-products-empty p {
  margin: 0 0 0.75rem;
}

.panel-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-product-list__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.panel-product-list__item:hover {
  border-color: rgb(242 188 9 / 0.5);
  box-shadow: var(--shadow-card);
}

.panel-product-list__thumb {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
}

.panel-product-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-product-list__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.75rem;
  color: var(--brand-muted);
}

.panel-product-list__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.panel-product-list__name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-product-list__meta {
  font-size: 0.75rem;
  color: var(--brand-muted);
}

.panel-products-card__more {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-muted);
  text-decoration: none;
}

.panel-products-card__more:hover {
  color: var(--brand-text);
}

/* Panel profile */
.panel-profile-card__header {
  margin-bottom: 1.25rem;
}

.panel-profile-card__header h2 {
  margin-bottom: 0.25rem;
}

.panel-profile-photo {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand-bg) 0%, rgb(242 188 9 / 0.08) 100%);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
}

.panel-profile-photo__avatar {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-surface);
  box-shadow: var(--shadow-card);
  background: var(--brand-surface);
}

.panel-profile-photo__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-profile-photo__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--brand-muted);
  background: var(--brand-bg);
}

.panel-profile-photo__body {
  flex: 1;
  min-width: 0;
}

.panel-profile-photo__body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.panel-profile-photo__form {
  margin-top: 0.85rem;
}

.panel-profile-upload {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--brand-border);
  border-radius: var(--radius-md);
  background: var(--brand-surface);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.panel-profile-upload:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
  box-shadow: var(--shadow-card);
}

.panel-profile-upload--error {
  border-color: var(--brand-danger);
}

.panel-profile-upload--loading {
  opacity: 0.65;
  pointer-events: none;
}

.panel-profile-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.panel-profile-upload__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-accent-soft);
  color: var(--brand-text);
  flex-shrink: 0;
}

.panel-profile-upload__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.panel-profile-upload__text strong {
  font-size: 0.88rem;
}

.panel-profile-upload__text span {
  font-size: 0.78rem;
  color: var(--brand-muted);
}

.panel-profile-photo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.panel-card--danger {
  border-color: rgb(220 38 38 / 0.35);
  background: linear-gradient(180deg, var(--brand-surface) 0%, rgb(254 242 242 / 0.5) 100%);
}

.panel-card--danger__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--brand-muted);
  max-width: 52ch;
}

.panel-card--danger__btn {
  color: var(--brand-danger);
  border-color: rgb(220 38 38 / 0.25);
}

.panel-danger-form {
  max-width: 420px;
}

/* Panel list / table pages */
.panel-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.panel-list-header__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.panel-list-header__subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

.panel-list-filters {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .panel-list-filters {
    grid-template-columns: 1fr 200px;
  }
}

.panel-table-wrap {
  overflow-x: auto;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.panel-table__empty td {
  text-align: center;
  padding: 2rem 1rem !important;
  color: var(--brand-muted);
}

.panel-table__actions {
  white-space: nowrap;
}

.panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.panel-confirm-card {
  margin-top: 1rem;
  border-color: rgb(220 38 38 / 0.35);
}

.panel-confirm-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.panel-page-hero {
  margin-bottom: 1.25rem;
}

.panel-page-hero h1 {
  margin: 0;
  font-size: 1.35rem;
}

.panel-page-hero p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.panel-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.panel-stack {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .panel-stack--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panel-stack__item {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
}

.panel-stack__item strong {
  display: block;
  font-weight: 600;
}

.panel-stack__muted {
  color: var(--brand-muted);
  font-size: 0.82rem;
}

.panel-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
}

.panel-sidebar__logo {
  height: 28px;
}

.panel-sidebar__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--brand-border);
  margin-top: auto;
}

.form-grid--pricing {
  display: grid;
  gap: 0.85rem;
  max-width: 420px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.panel-banner-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--brand-muted);
  cursor: pointer;
}

.panel-banner-pick input {
  width: auto;
  margin: 0;
}

.panel-gallery-tile__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem 0.5rem;
}

@media (max-width: 640px) {
  .panel-profile-photo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .panel-profile-photo__body {
    width: 100%;
  }

  .panel-profile-photo__actions {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .panel-page { flex-direction: column; }
  .panel-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--brand-border);
  }
  .panel-nav { display: flex; flex-wrap: wrap; }
  .panel-nav a { border-left: none; border-bottom: 3px solid transparent; }
  .panel-nav a.is-active { border-bottom-color: var(--brand-accent); }
}

@media (max-width: 768px) {
  .public-menu-toggle { display: block; }
  .public-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-surface);
    border-bottom: 1px solid var(--brand-border);
    flex-direction: column;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-card);
  }
  .public-nav.is-open { display: flex; }
  .public-header__inner { position: relative; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .public-header__actions .btn--ghost { display: none; }
}

/* Contact page */
.contact-page__header {
  max-width: 42rem;
}

.contact-page {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-page {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2rem;
  }
}

.contact-page__info {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--brand-bg);
  border-radius: var(--radius-md);
}

.contact-info-card h2 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
  line-height: 1.5;
}

.contact-info-card a {
  color: var(--brand-text);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-page__links {
  margin-bottom: 0;
}

.contact-page__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-page__link-list a {
  color: var(--brand-text);
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-page__link-list a:hover {
  text-decoration: underline;
}

.contact-page__form h2 {
  margin-bottom: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}
