:root {
  --public-accent: #ef2d68;
  --public-accent-dark: #c91d51;
  --public-ink: #15161a;
  --public-muted: #737780;
  --public-line: #e6e7eb;
  --public-soft: #fff7fa;
  --public-blue: #4285e8;
  --public-green: #1aa85a;
}

.public-site-body {
  margin: 0;
  min-width: 320px;
  color: var(--public-ink);
  background: #fcfcfd;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  text-rendering: optimizeLegibility;
}

.public-site-body * {
  box-sizing: border-box;
}

.public-site-body a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--public-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
}

.site-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.7);
  transform-origin: center 24%;
}

.site-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: var(--public-accent);
}

.site-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.site-brand-copy {
  display: grid;
  gap: 2px;
}

.site-brand-copy strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-brand-copy small {
  color: var(--public-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 42px;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #2f3137;
  font-size: 16px;
  font-weight: 600;
}

.site-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 3px;
  background: var(--public-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active {
  color: var(--public-accent);
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after,
.site-nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header-actions {
  display: flex;
  min-width: 250px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-login-link {
  color: #3b3d43;
  font-size: 16px;
  font-weight: 600;
}

.site-login-link:hover,
.site-login-link:focus-visible {
  color: var(--public-accent);
}

.site-account-menu {
  position: relative;
  min-width: 0;
}

.site-account-trigger {
  display: flex;
  max-width: 150px;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f3137;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
}

.site-account-trigger > img,
.site-account-identity > img,
.site-mobile-account > img {
  display: block;
  flex: 0 0 auto;
  border: 1px solid #f1c2d0;
  border-radius: 50%;
  background: #f4f4f6;
  object-fit: cover;
}

.site-account-trigger > img {
  width: 36px;
  height: 36px;
}

.site-account-trigger > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-account-trigger > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #8b8e96;
  transition: transform 180ms ease;
}

.site-account-trigger:hover,
.site-account-trigger:focus-visible {
  color: var(--public-accent-dark);
}

.site-account-popover {
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  right: 0;
  width: 342px;
  padding: 18px;
  border: 1px solid var(--public-line);
  border-radius: 8px;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 24, 32, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-account-popover::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
  content: "";
}

.site-account-menu:not(.is-dismissed):hover .site-account-popover,
.site-account-menu.is-open .site-account-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-account-menu:not(.is-dismissed):hover .site-account-trigger > svg,
.site-account-menu.is-open .site-account-trigger > svg {
  transform: rotate(180deg);
}

.site-account-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eff0f2;
}

.site-account-identity > img {
  width: 52px;
  height: 52px;
}

.site-account-identity > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.site-account-identity strong,
.site-account-identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-account-identity strong {
  color: var(--public-ink);
  font-size: 17px;
  font-weight: 800;
}

.site-account-identity span {
  color: var(--public-muted);
  font-size: 12px;
  font-weight: 600;
}

.site-account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0;
  padding: 16px 0;
}

.site-account-stats > div {
  min-width: 0;
}

.site-account-level {
  grid-column: 1 / -1;
}

.site-account-stats dt {
  margin-bottom: 4px;
  color: #8a8d95;
  font-size: 11px;
  font-weight: 650;
}

.site-account-stats dd {
  margin: 0;
  overflow: hidden;
  color: #27292f;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-account-wallet dd {
  color: var(--public-accent-dark);
  font-size: 18px;
}

.site-account-stats dd small {
  color: #767982;
  font-size: 11px;
  font-weight: 650;
}

.site-account-gift-wallet dd {
  color: #3c63a8;
}

.site-account-gift-wallet > p {
  margin: 5px 0 0;
  color: #777b84;
  font-size: 10px;
  line-height: 1.45;
}

.site-account-level {
  padding-top: 14px;
  border-top: 1px solid #eff0f2;
}

.site-account-level-heading,
.site-account-level-labels,
.site-account-level-detail {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-account-level-heading dt {
  margin: 0;
}

.site-account-level-heading dd {
  color: var(--public-accent-dark);
  font-size: 13px;
}

.site-account-level-labels {
  margin-top: 12px;
  color: #5e626b;
  font-size: 10px;
  font-weight: 750;
}

.site-account-progress {
  width: 100%;
  height: 7px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 4px;
  background: #eceef1;
}

.site-account-progress > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--public-blue);
}

.site-account-level-detail {
  margin: 8px 0 0;
  color: #858891;
  font-size: 10px;
  line-height: 1.45;
}

.site-account-level-detail strong {
  min-width: 0;
  color: #50535b;
  font-weight: 700;
  text-align: right;
}

.site-account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #eff0f2;
}

.site-account-actions form {
  margin: 0;
}

.site-account-actions a,
.site-account-actions button {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #e5e6ea;
  border-radius: 6px;
  background: #fff;
  color: #4a4d55;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.site-account-actions a:hover,
.site-account-actions a:focus-visible,
.site-account-actions button:hover,
.site-account-actions button:focus-visible {
  border-color: #ef9db7;
  background: var(--public-soft);
  color: var(--public-accent-dark);
}

.site-account-actions svg {
  width: 15px;
  height: 15px;
}

.site-contact-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 7px;
  background: var(--public-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(239, 45, 104, 0.16);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.public-site-body a.site-contact-button,
.public-site-body a.site-contact-button:hover,
.public-site-body a.site-contact-button:focus-visible {
  color: #fff;
}

.site-contact-button:hover,
.site-contact-button:focus-visible {
  background: var(--public-accent-dark);
  box-shadow: 0 10px 22px rgba(239, 45, 104, 0.23);
  transform: translateY(-1px);
}

.site-menu-toggle,
.site-mobile-menu {
  display: none;
}

.site-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--public-line);
  background: #fff;
}

.site-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 28px;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--public-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-eyebrow {
  display: none;
}

.site-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.14;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: #5e626b;
  font-size: 18px;
}

.hero-accent {
  position: absolute;
  right: -8px;
  height: 32px;
  background: var(--public-accent);
  clip-path: polygon(0 70%, 18% 54%, 27% 60%, 45% 8%, 54% 30%, 100% 0, 88% 75%, 63% 55%, 50% 100%, 27% 72%, 10% 100%);
  opacity: 0.92;
  transform: rotate(-4deg);
}

.hero-accent-one {
  top: 58px;
  width: 560px;
}

.hero-accent-two {
  top: 112px;
  width: 360px;
  opacity: 0.22;
  transform: rotate(-4deg) translateX(38px);
}

.site-controls {
  padding-top: 22px;
  padding-bottom: 20px;
}

.control-row {
  display: grid;
  grid-template-columns: 1fr 202px auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 12px 16px;
}

.control-row .search-field {
  grid-column: 1;
  grid-row: 1;
}

.control-row .project-tabs {
  grid-column: 1 / -1;
  grid-row: 2;
}

.control-row .style-filter {
  grid-column: 2;
  grid-row: 1;
}

.control-row .availability-filter {
  grid-column: 3;
  grid-row: 1;
}

.search-field,
.style-filter {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #d8d9de;
  border-radius: 7px;
  background: #fff;
  color: #777b84;
}

.search-field:focus-within,
.style-filter:focus-within {
  border-color: var(--public-accent);
  box-shadow: 0 0 0 3px rgba(239, 45, 104, 0.1);
}

.search-field svg,
.style-filter svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.search-field input,
.style-filter select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--public-ink);
  font: inherit;
  font-size: 16px;
}

.search-field input::placeholder {
  color: #9b9ea6;
}

.style-filter {
  cursor: pointer;
}

.style-filter select {
  appearance: none;
  cursor: pointer;
}

.style-filter svg:last-child {
  width: 17px;
  height: 17px;
}

.project-tabs {
  display: flex;
  min-height: 56px;
  align-items: center;
  overflow-x: auto;
  border: 1px solid #d8d9de;
  border-radius: 7px;
  background: #fff;
  scrollbar-width: none;
}

.project-tabs {
  max-width: none;
}

.project-tabs::-webkit-scrollbar {
  display: none;
}

.project-tab {
  position: relative;
  min-height: 44px;
  flex: 1 0 auto;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid #e1e2e6;
  background: transparent;
  color: #303238;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  white-space: nowrap;
}

.project-tab:last-child {
  border-right: 0;
}

.project-tab:hover,
.project-tab:focus-visible {
  color: var(--public-accent);
}

.project-tab.is-active {
  margin: 3px;
  min-height: 50px;
  border: 0;
  border-radius: 5px;
  background: var(--public-accent);
  color: #fff;
  font-weight: 700;
}

.availability-filter {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #36383e;
  font-size: 16px;
  white-space: nowrap;
}

.availability-filter input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #c9cbd0;
  cursor: pointer;
  transition: background 180ms ease;
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
  content: "";
  transition: transform 180ms ease;
}

.availability-filter input:checked + .switch {
  background: var(--public-accent);
}

.availability-filter input:checked + .switch::after {
  transform: translateX(22px);
}

.availability-filter input:focus-visible + .switch {
  outline: 3px solid rgba(239, 45, 104, 0.2);
  outline-offset: 2px;
}

.trust-strip {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-around;
  border: 1px solid var(--public-line);
  border-radius: 10px;
  background: #fff;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2f3138;
  font-size: 16px;
  font-weight: 650;
}

.trust-item svg {
  width: 25px;
  height: 25px;
  color: var(--public-accent);
  stroke-width: 1.8;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: #dedfe3;
}

.hall-section {
  padding-top: 24px;
  padding-bottom: 62px;
}

.hall-section .section-kicker {
  display: none;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading.compact {
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
}

.hall-section .section-heading {
  margin-bottom: 14px;
}

.section-kicker {
  margin-bottom: 6px;
  color: #9a9da5;
  font-size: 10px;
}

.result-count,
.section-note {
  margin: 0 0 5px;
  color: var(--public-muted);
  font-size: 15px;
}

.result-count strong {
  color: var(--public-ink);
  font-size: 20px;
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.companion-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dadce1;
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.companion-card:hover {
  border-color: #c7cad2;
  box-shadow: 0 12px 24px rgba(22, 24, 32, 0.08);
  transform: translateY(-2px);
}

.companion-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.25;
  background: #f1f2f4;
}

.companion-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.companion-card:hover .companion-card-image img {
  transform: scale(1.025);
}

.companion-card-content {
  display: grid;
  gap: 12px;
  padding: 14px 14px 13px;
}

.companion-card-heading,
.detail-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.companion-card-name {
  min-width: 0;
  overflow: hidden;
  color: var(--public-ink);
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.companion-card-name:hover,
.companion-card-name:focus-visible {
  color: var(--public-accent);
}

.availability {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  color: #858891;
  font-size: 13px;
  white-space: nowrap;
}

.availability.is-available {
  color: var(--public-green);
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aeb1b7;
}

.availability.is-available .availability-dot {
  background: var(--public-green);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1;
}

.tag-project {
  border-color: #ffabc4;
  color: var(--public-accent);
  background: #fff7fa;
}

.tag-style {
  border-color: #a8c9ff;
  color: var(--public-blue);
  background: #f5f9ff;
}

.companion-card-bio {
  display: -webkit-box;
  overflow: hidden;
  min-height: 38px;
  margin: 0;
  color: #747780;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: none;
}

.audio-control {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #ececf0;
  border-bottom: 1px solid #ececf0;
  padding: 8px 0;
}

.audio-toggle {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9cbd1;
  border-radius: 50%;
  background: #fff;
  color: var(--public-ink);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible,
.audio-toggle.is-playing {
  border-color: var(--public-accent);
  background: var(--public-accent);
  color: #fff;
}

.audio-toggle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.waveform {
  display: flex;
  min-width: 0;
  height: 28px;
  flex: 1;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}

.wave-bar {
  width: 3px;
  min-width: 3px;
  height: 35%;
  border-radius: 3px;
  background: #c9cbd0;
}

.wave-bar:nth-child(3n) { height: 72%; }
.wave-bar:nth-child(4n) { height: 48%; }
.wave-bar:nth-child(7n) { height: 92%; }
.wave-bar:nth-child(9n) { height: 60%; }

.audio-control.is-playing .wave-bar {
  background: var(--public-accent);
  animation: public-wave 740ms ease-in-out infinite alternate;
}

.audio-control.is-playing .wave-bar:nth-child(2n) { animation-delay: 130ms; }
.audio-control.is-playing .wave-bar:nth-child(3n) { animation-delay: 250ms; }

@keyframes public-wave {
  from { transform: scaleY(0.65); }
  to { transform: scaleY(1.05); }
}

.audio-time {
  min-width: 38px;
  color: #777a82;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.audio-control audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.companion-card-footer {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 0;
  color: #2d3036;
  font-size: 15px;
  font-weight: 650;
}

.companion-card-footer:hover,
.companion-card-footer:focus-visible {
  color: var(--public-accent);
  background: #fff9fb;
}

.companion-card-footer svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.companion-card-footer:hover svg,
.companion-card-footer:focus-visible svg {
  transform: translateX(3px);
}

.empty-state {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed #d5d7dd;
  border-radius: 8px;
  background: #fff;
  color: var(--public-muted);
  text-align: center;
}

.empty-state svg {
  width: 30px;
  height: 30px;
  color: var(--public-accent);
}

.empty-state strong {
  color: var(--public-ink);
  font-size: 16px;
}

.empty-state p {
  margin: 0;
  font-size: 13px;
}

.project-section {
  padding-top: 34px;
  padding-bottom: 68px;
  border-top: 1px solid var(--public-line);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--public-line);
  border-radius: 7px;
  background: #fff;
  color: #373940;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  text-align: left;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-summary:hover,
.project-summary:focus-visible {
  border-color: var(--public-accent);
  color: var(--public-accent);
  transform: translateY(-1px);
}

.project-summary svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  border-top: 1px solid var(--public-line);
  background: #fff;
}

.site-footer-inner {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  font-size: 16px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--public-muted);
  font-size: 13px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--public-accent);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a svg {
  width: 16px;
  height: 16px;
}

.site-status {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(360px, calc(100% - 36px));
  padding: 10px 14px;
  border: 1px solid #f4bbca;
  border-radius: 6px;
  background: #fff8fa;
  color: var(--public-accent-dark);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state[hidden] {
  display: none;
}

.hero-title-mobile {
  display: none;
}

.site-pagination {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  color: var(--public-muted);
  font-size: 13px;
}

.site-pagination a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--public-line);
  border-radius: 5px;
  background: #fff;
  color: #3d4047;
  font-weight: 650;
}

.site-pagination a:hover,
.site-pagination a:focus-visible {
  border-color: var(--public-accent);
  color: var(--public-accent);
}

.site-pagination svg {
  width: 16px;
  height: 16px;
}

.detail-page {
  padding-top: 26px;
  padding-bottom: 76px;
}

.breadcrumb {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--public-muted);
  font-size: 14px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--public-accent);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: start;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--public-line);
  border-radius: 8px;
  background: #fff;
}

.detail-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.18;
  border-radius: 6px;
  background: #f1f2f4;
}

.detail-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-image-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--public-accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.detail-image-label svg {
  width: 16px;
  height: 16px;
}

.detail-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px 20px 20px 0;
}

.detail-copy h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-title-row {
  align-items: center;
}

.detail-title-main {
  display: grid;
  gap: 10px;
}

.detail-status-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.detail-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--public-accent);
  font-size: 14px;
  font-weight: 700;
}

.detail-verified svg {
  width: 20px;
  height: 20px;
}

.detail-tags {
  margin-top: -6px;
}

.detail-audio {
  min-height: 66px;
  padding: 10px 0;
}

.detail-audio .audio-toggle {
  width: 48px;
  height: 48px;
  border-color: var(--public-accent);
  background: var(--public-accent);
  color: #fff;
}

.detail-audio .waveform {
  height: 38px;
}

.detail-bio {
  padding-top: 4px;
}

.detail-bio h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.detail-bio p {
  max-width: 58ch;
  margin: 0;
  color: #676b74;
  font-size: 15px;
  line-height: 1.8;
}

.detail-projects {
  display: grid;
  gap: 10px;
}

.detail-projects h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.detail-project-list {
  display: grid;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: 7px;
  list-style: none;
}

.detail-project-list li {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid var(--public-line);
  color: var(--public-ink);
  font-size: 15px;
  font-weight: 700;
}

.detail-project-list li:last-child {
  border-bottom: 0;
}

.detail-project-note {
  color: var(--public-accent);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.detail-empty-note {
  margin: 0;
  color: var(--public-muted);
  font-size: 14px;
}

.detail-assurance-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 2px;
  color: #676b74;
  font-size: 14px;
}

.detail-assurance-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-assurance-strip span + span {
  padding-left: 16px;
  border-left: 1px solid var(--public-line);
}

.detail-assurance-strip svg {
  width: 22px;
  height: 22px;
  color: var(--public-accent);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 4px;
}

.detail-cta {
  min-height: 48px;
}

.detail-back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: var(--public-muted);
  font-size: 14px;
  font-weight: 650;
}

.detail-back-link:hover,
.detail-back-link:focus-visible {
  color: var(--public-accent);
}

.detail-back-link svg {
  width: 17px;
  height: 17px;
}

.related-section {
  padding-top: 34px;
}

.related-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.related-heading h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 750;
  line-height: 1.2;
}

.related-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--public-accent);
  font-size: 14px;
  font-weight: 700;
}

.related-heading svg {
  width: 16px;
  height: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  min-height: 180px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--public-line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: rgba(239, 45, 104, 0.45);
  box-shadow: 0 12px 24px rgba(32, 35, 43, 0.08);
  transform: translateY(-2px);
}

.related-card > img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.related-card-copy {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px 0;
}

.related-card-copy strong {
  font-size: 22px;
  font-weight: 800;
}

.related-tags {
  flex-wrap: wrap;
}

.related-card-arrow {
  width: 20px;
  height: 20px;
  margin-right: 18px;
  color: var(--public-accent);
}

.site-mobile-bottom {
  display: none;
}

@media (max-width: 1279px) {
  .control-row {
    grid-template-columns: 280px minmax(0, 1fr) 170px;
  }

  .availability-filter {
    grid-column: 3;
    justify-content: flex-start;
  }

  .companion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 40px, 680px);
  }

  .site-nav,
  .site-login-link,
  .site-account-menu {
    display: none;
  }

  .site-brand,
  .site-header-actions {
    min-width: 0;
  }

  .site-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--public-line);
    border-radius: 6px;
    background: #fff;
    color: var(--public-ink);
    cursor: pointer;
  }

  .site-menu-toggle svg {
    width: 23px;
    height: 23px;
  }

  .site-mobile-menu {
    width: min(100% - 40px, 680px);
    margin: 0 auto 12px;
    padding: 8px;
    border: 1px solid var(--public-line);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(22, 24, 32, 0.08);
  }

  .site-mobile-menu:not([hidden]) {
    display: grid;
  }

  .site-mobile-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 5px;
    color: #3c3f46;
    font-size: 15px;
    font-weight: 650;
  }

  .site-mobile-menu a:hover,
  .site-mobile-menu a:focus-visible {
    background: var(--public-soft);
    color: var(--public-accent);
  }

  .site-mobile-account {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    min-width: 0;
    align-items: center;
    gap: 11px;
    margin: 2px 4px 7px;
    padding: 10px 8px 13px;
    border-bottom: 1px solid var(--public-line);
  }

  .site-mobile-account > img {
    width: 42px;
    height: 42px;
  }

  .site-mobile-account-identity {
    display: grid;
    min-width: 0;
    gap: 3px;
  }

  .site-mobile-account-identity strong,
  .site-mobile-account-identity small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-mobile-account-identity strong {
    color: var(--public-ink);
    font-size: 15px;
  }

  .site-mobile-account-identity small {
    color: var(--public-muted);
    font-size: 11px;
  }

  .site-mobile-wallets {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 7px 0 0;
  }

  .site-mobile-wallets div {
    min-width: 0;
  }

  .site-mobile-wallets dt {
    color: #858891;
    font-size: 10px;
  }

  .site-mobile-wallets dd {
    margin: 3px 0 0;
    color: #30333a;
    font-size: 14px;
    font-weight: 800;
  }

  .site-mobile-wallets div:last-child dd {
    color: #3c63a8;
  }

  .site-mobile-gift-note,
  .site-mobile-level {
    grid-column: 1 / -1;
  }

  .site-mobile-gift-note {
    margin: -3px 0 1px;
    color: #7b7e86;
    font-size: 10px;
    line-height: 1.45;
  }

  .site-mobile-level {
    min-width: 0;
    padding-top: 9px;
    border-top: 1px solid #eff0f2;
  }

  .site-mobile-level > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #5e626b;
    font-size: 10px;
    font-weight: 750;
  }

  .site-mobile-level small {
    display: block;
    margin-top: 6px;
    color: #656972;
    font-size: 10px;
    line-height: 1.45;
  }

  .site-mobile-logout {
    margin: 0;
  }

  .site-mobile-logout button {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #6d7078;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 650;
  }

  .site-mobile-logout button:hover,
  .site-mobile-logout button:focus-visible {
    background: var(--public-soft);
    color: var(--public-accent-dark);
  }

  .control-row {
    grid-template-columns: 1fr 1fr;
  }

  .search-field,
  .project-tabs {
    grid-column: 1 / -1;
  }

  .style-filter,
  .availability-filter {
    grid-column: auto;
  }

  .availability-filter {
    justify-content: flex-end;
  }

  .companion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-copy {
    padding: 0 8px 8px;
  }
}

@media (max-width: 600px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .site-header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .site-brand img {
    width: 100%;
    height: 100%;
  }

  .site-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .site-brand-copy strong {
    font-size: 18px;
  }

  .site-brand-copy small {
    font-size: 8px;
  }

  .site-header-actions {
    gap: 8px;
  }

  .site-contact-button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .site-mobile-menu {
    width: calc(100% - 28px);
  }

  .site-hero-content {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .site-hero h1 {
    font-size: 34px;
  }

  .hero-title-full,
  .hero-eyebrow,
  .hero-subtitle,
  .hero-accent {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero-accent-one {
    top: 54px;
    right: -190px;
    width: 390px;
  }

  .hero-accent-two {
    top: 105px;
    right: -160px;
    width: 280px;
  }

  .site-controls {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .control-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .search-field,
  .project-tabs {
    grid-column: 1 / -1;
  }

  .search-field {
    min-height: 50px;
  }

  .project-tabs {
    min-height: 50px;
  }

  .project-tab {
    padding: 0 18px;
    font-size: 14px;
  }

  .project-tab.is-active {
    min-height: 44px;
  }

  .style-filter {
    display: none;
  }

  .availability-filter {
    min-height: 46px;
    gap: 8px;
    font-size: 14px;
  }

  .switch {
    width: 46px;
    height: 27px;
  }

  .switch::after {
    width: 21px;
    height: 21px;
  }

  .availability-filter input:checked + .switch::after {
    transform: translateX(19px);
  }

  .trust-strip {
    min-height: 62px;
    justify-content: space-between;
    padding: 0 10px;
  }

  .trust-item {
    gap: 6px;
    font-size: 12px;
  }

  .trust-item svg {
    width: 20px;
    height: 20px;
  }

  .trust-divider {
    height: 22px;
  }

  .hall-section {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .hall-section .section-heading {
    display: none;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .section-kicker {
    font-size: 9px;
  }

  .result-count,
  .section-note {
    font-size: 12px;
  }

  .result-count strong {
    font-size: 17px;
  }

  .companion-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .companion-card {
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .companion-card-image {
    grid-row: 1;
    aspect-ratio: 1.18;
  }

  .companion-card-content {
    grid-column: 2;
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .companion-card-name {
    font-size: 19px;
  }

  .availability {
    font-size: 11px;
  }

  .tag {
    min-height: 25px;
    padding: 0 7px;
    font-size: 11px;
  }

  .companion-card-bio {
    min-height: 0;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .audio-control {
    min-height: 42px;
    gap: 7px;
    padding: 5px 0;
  }

  .audio-toggle {
    width: 34px;
    height: 34px;
  }

  .audio-toggle svg {
    width: 15px;
    height: 15px;
  }

  .waveform {
    height: 24px;
    gap: 1px;
  }

  .wave-bar {
    width: 2px;
    min-width: 2px;
  }

  .audio-time {
    min-width: 32px;
    font-size: 11px;
  }

  .companion-card-footer {
    grid-column: 1 / -1;
    min-height: 44px;
    border-top: 1px solid #ececf0;
    font-size: 14px;
  }

  .project-section {
    padding-top: 26px;
    padding-bottom: 46px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .site-mobile-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--public-line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 20px rgba(22, 24, 32, 0.06);
  }

  .site-mobile-bottom a {
    display: grid;
    min-height: 62px;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: #7b7e86;
    font-size: 11px;
    font-weight: 650;
  }

  .site-mobile-bottom a.is-active,
  .site-mobile-bottom a:hover,
  .site-mobile-bottom a:focus-visible {
    color: var(--public-accent);
  }

  .site-mobile-bottom svg {
    width: 21px;
    height: 21px;
  }

  .public-site-body {
    padding-bottom: 62px;
  }

  .detail-page {
    padding-top: 14px;
    padding-bottom: 48px;
  }

  .detail-layout {
    gap: 18px;
    margin-top: 12px;
    padding: 10px;
  }

  .detail-copy {
    gap: 16px;
    padding: 0 4px 6px;
  }

  .detail-copy h1 {
    font-size: 32px;
  }

  .detail-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .detail-status-list {
    gap: 10px;
  }

  .detail-verified {
    font-size: 12px;
  }

  .detail-projects h2 {
    font-size: 20px;
  }

  .detail-project-list li {
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .detail-project-note {
    font-size: 12px;
  }

  .detail-assurance-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 12px;
  }

  .detail-assurance-strip span + span {
    padding-left: 0;
    border-left: 0;
  }

  .related-section {
    padding-top: 26px;
  }

  .related-heading {
    margin-bottom: 14px;
  }

  .related-heading h2 {
    font-size: 26px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .related-card {
    grid-template-columns: 40% minmax(0, 1fr) auto;
    min-height: 128px;
    gap: 12px;
  }

  .related-card > img {
    width: 100%;
    height: 128px;
  }

  .related-card-copy {
    gap: 7px;
    padding: 12px 0;
  }

  .related-card-copy strong {
    font-size: 18px;
  }

  .related-card-arrow {
    width: 17px;
    height: 17px;
    margin-right: 10px;
  }

  .detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .detail-cta,
  .detail-back-link {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-site-body *,
  .public-site-body *::before,
  .public-site-body *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Gender badge ── */
.companion-card-name-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.gender-badge {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.gender-female { color: var(--public-accent); }
.gender-male   { color: var(--public-blue); }

/* ── Hall heading right (count + sort) ── */
.hall-heading-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 5px;
}

.sort-select {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px 0 14px;
  min-height: 36px;
  border: 1px solid #d8d9de;
  border-radius: 6px;
  background: #fff;
  color: #36383e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.sort-select select {
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  appearance: none;
}

.sort-select svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #8b8e96;
}

/* ── Home services section ── */
.home-services-section {
  padding-top: 46px;
  padding-bottom: 58px;
  border-top: 1px solid var(--public-line);
  background: #fff;
}

.home-service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.home-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px 22px;
  border: 1px solid var(--public-line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-service-item:hover,
.home-service-item:focus-visible {
  border-color: #f0b2c5;
  box-shadow: 0 8px 20px rgba(239, 45, 104, 0.08);
  transform: translateY(-2px);
}

.home-service-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fce8ed;
  color: var(--public-accent);
}

.home-service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.home-service-item strong {
  font-size: 15px;
  font-weight: 750;
  color: var(--public-ink);
}

.home-service-item small {
  color: var(--public-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Unified public home, hall and services pages. */
.public-page {
  min-width: 0;
  overflow: clip;
}

.brand-hero {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  overflow: hidden;
  border-bottom: 1px solid var(--public-line);
  background: #f4f4f6;
}

.brand-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.brand-hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
}

.brand-hero-copy {
  width: min(490px, 40%);
  min-width: 0;
  color: #111217;
}

.brand-hero-eyebrow {
  margin: 0 0 14px;
  color: var(--public-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.brand-hero-lead {
  margin: 18px 0 0;
  color: #292b31;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.brand-hero-description {
  max-width: 45ch;
  margin: 14px 0 0;
  color: #5d616a;
  font-size: 16px;
  line-height: 1.75;
}

.brand-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.brand-hero-actions .site-contact-button,
.brand-secondary-button {
  min-width: 188px;
  min-height: 52px;
}

.brand-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid var(--public-accent);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--public-accent-dark);
  font-size: 15px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.brand-secondary-button:hover,
.brand-secondary-button:focus-visible {
  background: var(--public-accent);
  color: #fff;
  transform: translateY(-1px);
}

.brand-hero-actions svg,
.brand-secondary-button svg {
  width: 17px;
  height: 17px;
}

.home-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 590px;
  margin-top: 34px;
}

.home-hero-trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.home-hero-trust-item > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #202228;
  stroke-width: 1.8;
}

.home-hero-trust-item > span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.home-hero-trust-item strong {
  font-size: 13px;
  font-weight: 800;
}

.home-hero-trust-item small {
  overflow: hidden;
  color: #656972;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-hero-compact {
  min-height: 230px;
}

.brand-hero-compact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to right, #fff 26%, rgba(255, 255, 255, 0.82) 40%, transparent 62%);
  content: "";
}

.brand-hero-compact .brand-hero-copy {
  width: min(520px, 44%);
}

.brand-hero-compact h1 {
  max-width: none;
  font-size: 40px;
}

.brand-hero-compact .brand-hero-description {
  margin-top: 12px;
  font-size: 17px;
}

/* Home hero: left-white / right-photo split layout */
.brand-hero-home {
  background: #fff;
}

.brand-hero-home .brand-hero-media {
  left: auto;
  width: 57%;
  object-position: left center;
}

.brand-hero-home::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to right, #fff 38%, transparent 57%);
  content: "";
}

.home-featured-section {
  padding-top: 38px;
  padding-bottom: 52px;
}

.home-section-heading {
  align-items: center;
}

.section-heading-link,
.service-group-heading > a,
.service-secondary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--public-accent);
  font-size: 14px;
  font-weight: 750;
}

.section-heading-link:hover,
.section-heading-link:focus-visible,
.service-group-heading > a:hover,
.service-group-heading > a:focus-visible,
.service-secondary-link:hover,
.service-secondary-link:focus-visible {
  color: var(--public-accent-dark);
}

.section-heading-link svg,
.service-group-heading > a svg,
.service-secondary-link svg {
  width: 17px;
  height: 17px;
}

.home-companion-grid .companion-card {
  display: grid;
  grid-template-columns: 31% minmax(0, 1fr);
  grid-template-rows: minmax(138px, auto);
  min-height: 138px;
}

.home-companion-grid .companion-card-image {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 138px;
  border-right: 1px solid #ececf0;
  aspect-ratio: auto;
}

.home-companion-grid .companion-card-content {
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.home-companion-grid .companion-card-heading {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.home-companion-grid .companion-card-name {
  font-size: 18px;
}

.home-companion-grid .companion-card-bio,
.home-companion-grid .audio-control,
.home-companion-grid .companion-card-footer {
  display: none;
}

.home-empty-state {
  min-height: 176px;
}

.home-route-section {
  padding-top: 46px;
  padding-bottom: 58px;
  border-top: 1px solid var(--public-line);
  background: #fff;
}

.home-route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dfe1e6;
  border-bottom: 1px solid #dfe1e6;
}

.home-route-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  transition: background 180ms ease, color 180ms ease;
}

.home-route-link + .home-route-link {
  border-left: 1px solid #dfe1e6;
}

.home-route-link:hover,
.home-route-link:focus-visible {
  background: var(--public-soft);
  color: var(--public-accent-dark);
}

.home-route-index {
  color: var(--public-accent);
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.home-route-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.home-route-copy strong {
  font-size: 20px;
  font-weight: 750;
}

.home-route-copy small {
  color: var(--public-muted);
  font-size: 13px;
  line-height: 1.5;
}

.home-route-link > svg {
  width: 22px;
  height: 22px;
  color: var(--public-accent);
}

.public-hall-page .site-controls {
  padding-top: 22px;
  padding-bottom: 18px;
}

.public-hall-page .hall-section {
  padding-top: 12px;
}

.public-hall-page .hall-section .section-kicker {
  display: block;
}

.public-hall-page .companion-card {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto;
}

.public-hall-page .companion-card-image {
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 192px;
  height: 100%;
  border-right: 1px solid #ececf0;
  aspect-ratio: auto;
}

.public-hall-page .companion-card-content {
  display: contents;
}

.public-hall-page .companion-card-heading {
  grid-column: 2;
  grid-row: 1;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 14px 14px 0;
}

.public-hall-page .companion-card-name {
  font-size: 18px;
}

.public-hall-page .companion-card-content > .tag-list {
  grid-column: 2;
  grid-row: 2;
  align-content: start;
  padding: 0 14px;
}

.public-hall-page .companion-card-bio {
  display: -webkit-box;
  grid-column: 2;
  grid-row: 3;
  min-height: 48px;
  padding: 0 14px 10px;
  font-size: 11px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.public-hall-page .companion-card-content > .audio-control {
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 0 14px;
}

.public-hall-page .companion-card-footer {
  grid-column: 1 / -1;
  grid-row: 5;
  border-top: 1px solid #ececf0;
}

.service-catalog-section {
  padding-top: 22px;
  padding-bottom: 68px;
}

.service-category-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--public-line);
}

.service-category-nav > strong {
  color: #2e3036;
  font-size: 15px;
  white-space: nowrap;
}

.service-category-nav > div {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-category-nav a {
  display: inline-flex;
  min-width: 112px;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #dfe1e6;
  border-right: 0;
  color: #555962;
  font-size: 14px;
  font-weight: 650;
}

.service-category-nav a:first-child {
  border-color: var(--public-accent);
  color: var(--public-accent);
}

.service-category-nav a:last-child {
  border-right: 1px solid #dfe1e6;
}

.service-category-nav a:hover,
.service-category-nav a:focus-visible {
  border-color: var(--public-accent);
  background: var(--public-soft);
  color: var(--public-accent-dark);
}

.service-category-nav > span {
  color: var(--public-muted);
  font-size: 12px;
  white-space: nowrap;
}

.service-catalog-heading {
  margin-bottom: 22px;
}

.service-groups {
  display: grid;
  gap: 46px;
}

.service-group {
  scroll-margin-top: 104px;
}

.service-group-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.service-group-heading > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0b2c5;
  border-radius: 7px;
  background: var(--public-soft);
  color: var(--public-accent-dark);
  font-size: 11px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.service-group-heading > div {
  min-width: 0;
}

.service-group-heading h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: 0;
}

.service-group-heading p {
  margin: 3px 0 0;
  color: var(--public-muted);
  font-size: 11px;
}

.service-item-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe1e6;
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-item:hover {
  border-color: #c9ccd3;
  box-shadow: 0 12px 24px rgba(22, 24, 32, 0.07);
  transform: translateY(-2px);
}

.service-item-summary {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px 18px 12px;
}

.service-item-type {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 4px 7px;
  border: 1px solid #dfe1e6;
  border-radius: 4px;
  color: #747780;
  font-size: 10px;
  font-weight: 700;
}

.service-item h4 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.25;
}

.service-item-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: #6a6e77;
  font-size: 11px;
}

.service-item-meta span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
}

.service-item-meta svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--public-green);
}

.service-starting-price {
  display: flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.service-starting-price > span {
  color: #777b84;
  font-size: 11px;
}

.service-starting-price > strong {
  color: var(--public-accent);
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.service-starting-price small {
  color: #5e626b;
  font-size: 11px;
  font-weight: 650;
}

.service-tier-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(78px, 1fr));
  min-width: 0;
  margin: 0 16px 16px;
  overflow-x: auto;
  border: 1px solid #e1e3e8;
  border-radius: 5px;
  scrollbar-width: thin;
}

.service-tier {
  min-width: 78px;
  border-left: 1px solid #e1e3e8;
  text-align: center;
}

.service-tier:first-child {
  border-left: 0;
}

.service-tier dt {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 5px 4px;
  border-bottom: 1px solid #e1e3e8;
  background: #fafafb;
  color: #666a73;
  font-size: 10px;
  white-space: nowrap;
}

.service-tier dd {
  display: grid;
  min-height: 52px;
  place-items: center;
  align-content: center;
  gap: 1px;
  margin: 0;
  padding: 5px 3px;
  color: #3b3e45;
}

.service-tier dd strong {
  font-size: 12px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.service-tier dd small {
  color: #92959d;
  font-size: 8px;
  line-height: 1.2;
}

.service-tier-empty,
.service-group-empty {
  margin: 0;
  color: var(--public-muted);
  font-size: 13px;
}

.service-tier-empty {
  min-height: 88px;
  margin: 0 18px 18px;
  padding: 16px 0;
  border-top: 1px solid #eceef1;
}

.service-empty-state {
  min-height: 260px;
}

.service-contact-section {
  padding: 42px 0;
  border-top: 1px solid var(--public-line);
  background: #fff;
}

.service-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-contact-inner h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: 0;
}

.service-contact-inner p:not(.section-kicker) {
  margin: 8px 0 0;
  color: var(--public-muted);
  font-size: 14px;
}

.service-contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-mobile-menu a.is-active {
  background: var(--public-soft);
  color: var(--public-accent-dark);
}

@media (max-width: 1279px) {
  .home-service-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .brand-hero-copy {
    width: min(560px, 52%);
  }

  .brand-hero h1 {
    font-size: 44px;
  }

  .brand-hero-compact h1 {
    font-size: 36px;
  }

  .home-hero-trust {
    gap: 14px;
  }

  .service-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-services-section {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .brand-hero {
    min-height: 460px;
  }

  .brand-hero-media {
    object-position: 60% center;
  }

  .brand-hero-copy,
  .brand-hero-compact .brand-hero-copy {
    width: min(430px, 65%);
  }

  .brand-hero-compact {
    min-height: 240px;
  }

  .brand-hero h1 {
    font-size: 40px;
  }

  .brand-hero-compact h1 {
    font-size: 32px;
  }

  .brand-hero-lead {
    font-size: 19px;
  }

  .home-hero-trust-item small {
    display: none;
  }

  .service-category-nav {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
  }

  .service-category-nav > span {
    grid-column: 2;
    margin-top: -12px;
  }

  .service-item-list {
    grid-template-columns: 1fr;
  }

  .service-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .site-brand-copy strong,
  .site-brand-copy small,
  .site-header-actions .site-contact-button {
    white-space: nowrap;
  }

  .brand-hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(255, 255, 255, 0.58);
    content: "";
  }

  .brand-hero {
    min-height: 340px;
  }

  .brand-hero-media {
    object-position: 61% center;
  }

  .brand-hero-inner {
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .brand-hero-copy,
  .brand-hero-compact .brand-hero-copy {
    width: 100%;
    max-width: none;
  }

  .brand-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .brand-hero h1,
  .brand-hero-compact h1 {
    max-width: 12ch;
    font-size: 32px;
  }

  .brand-hero-lead {
    max-width: 15ch;
    margin-top: 11px;
    font-size: 16px;
  }

  .brand-hero-description,
  .brand-hero-compact .brand-hero-description {
    max-width: 25ch;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
  }

  .brand-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .brand-hero-actions .site-contact-button,
  .brand-secondary-button {
    min-width: 0;
    min-height: 48px;
    padding: 0 9px;
    font-size: 13px;
  }

  .home-hero-trust {
    gap: 8px;
    margin-top: 16px;
  }

  .home-hero-trust-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .home-hero-trust-item > svg {
    width: 22px;
    height: 22px;
  }

  .home-hero-trust-item strong {
    font-size: 11px;
  }

  .brand-hero-compact {
    min-height: 220px;
  }

  .brand-hero-compact .brand-hero-inner {
    padding-top: 28px;
  }

  .brand-hero-compact h1 {
    font-size: 28px;
  }

  .home-featured-section {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .home-section-heading {
    display: flex;
    align-items: flex-end;
  }

  .home-section-heading .section-kicker,
  .home-section-heading .section-note {
    display: none;
  }

  .section-heading-link {
    min-height: 36px;
    font-size: 12px;
  }

  .home-companion-grid .companion-card {
    grid-template-columns: 39% minmax(0, 1fr);
    grid-template-rows: minmax(142px, auto);
    min-height: 142px;
  }

  .home-companion-grid .companion-card-image {
    grid-row: 1;
    min-height: 142px;
  }

  .home-companion-grid .companion-card-content {
    grid-column: 2;
    gap: 7px;
    padding: 11px;
  }

  .home-companion-grid .companion-card-name {
    font-size: 17px;
  }

  .home-route-section {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .home-route-list {
    grid-template-columns: 1fr;
  }

  .home-route-link {
    min-height: 88px;
    gap: 12px;
    padding: 16px 12px;
  }

  .home-route-link + .home-route-link {
    border-top: 1px solid #dfe1e6;
    border-left: 0;
  }

  .home-route-copy strong {
    font-size: 19px;
  }

  .home-route-copy small {
    font-size: 11px;
  }

  .home-services-section {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .home-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .home-service-icon svg {
    width: 22px;
    height: 22px;
  }

  .home-service-item {
    padding: 18px 10px 16px;
    gap: 8px;
  }

  .home-service-item strong {
    font-size: 13px;
  }

  .home-service-item small {
    font-size: 11px;
  }

  .sort-select {
    display: none;
  }

  .hall-heading-right {
    gap: 0;
  }

  .public-hall-page .site-controls {
    padding-top: 14px;
  }

  .public-hall-page .style-filter {
    display: flex;
    grid-column: 1 / -1;
  }

  .public-hall-page .hall-section .section-heading {
    display: flex;
    align-items: flex-end;
  }

  .public-hall-page .hall-section .section-kicker {
    display: none;
  }

  .public-hall-page .companion-card-content {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .public-hall-page .companion-card-image {
    grid-row: 1;
    min-height: 156px;
  }

  .public-hall-page .companion-card-heading,
  .public-hall-page .companion-card-content > .tag-list,
  .public-hall-page .companion-card-bio,
  .public-hall-page .companion-card-content > .audio-control {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    padding: 0;
  }

  .public-hall-page .companion-card-heading {
    gap: 4px;
  }

  .public-hall-page .companion-card-bio {
    display: none;
  }

  .public-hall-page .companion-card-content > .audio-control {
    min-height: 38px;
  }

  .service-catalog-section {
    padding-top: 14px;
    padding-bottom: 46px;
  }

  .service-category-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 14px 0 18px;
    margin-bottom: 26px;
  }

  .service-category-nav > div,
  .service-category-nav > span {
    grid-column: 1;
  }

  .service-category-nav > span {
    margin-top: 0;
  }

  .service-category-nav a {
    min-width: 98px;
    padding: 0 12px;
    font-size: 12px;
  }

  .service-catalog-heading {
    align-items: flex-end;
  }

  .service-catalog-heading .section-note {
    max-width: 12ch;
    text-align: right;
  }

  .service-groups {
    gap: 36px;
  }

  .service-group-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-group-heading > a {
    grid-column: 2;
    min-height: 34px;
    justify-self: start;
    font-size: 12px;
  }

  .service-group-heading h3 {
    font-size: 22px;
  }

  .service-item-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .service-item-summary {
    padding: 15px 15px 11px;
  }

  .service-starting-price > strong {
    font-size: 25px;
  }

  .service-tier-list {
    grid-template-columns: repeat(5, minmax(78px, 1fr));
    margin: 0 14px 14px;
  }

  .service-contact-section {
    padding: 34px 0;
  }

  .service-contact-inner h2 {
    font-size: 22px;
  }

  .service-contact-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .service-contact-actions .site-contact-button,
  .service-contact-actions .service-secondary-link {
    width: 100%;
    justify-content: center;
  }

  .site-mobile-bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .site-header-inner {
    gap: 8px;
  }

  .site-brand {
    gap: 7px;
  }

  .site-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .site-brand-copy strong {
    font-size: 16px;
  }

  .site-brand-copy small {
    font-size: 7px;
  }

  .site-header-actions {
    gap: 6px;
  }

  .site-header-actions .site-contact-button {
    min-height: 40px;
    padding: 0 9px;
    font-size: 12px;
  }

  .site-menu-toggle {
    width: 40px;
    height: 40px;
  }
}

/* ────────────────────────────────────────────────
   yujipw-style: Hero Carousel + Rankings + Activity
   ──────────────────────────────────────────────── */

/* ── Hero Swiper ── */
.home-hero-swiper-section {
  position: relative;
  border-bottom: 1px solid var(--public-line);
}

.home-hero-swiper {
  width: 100%;
  height: 480px;
}

.home-hero-slide {
  position: relative;
  overflow: hidden;
  background: #0d0e14;
}

.home-hero-slide-alt {
  background: linear-gradient(135deg, #0d0e14 0%, #1a1228 50%, #0d1220 100%);
}

.home-hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.home-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,11,18,0.82) 30%, rgba(10,11,18,0.18) 70%, transparent 100%);
  z-index: 1;
}

.home-hero-slide-overlay-dark {
  background: linear-gradient(to right, rgba(8,9,16,0.92) 35%, rgba(8,9,16,0.55) 65%, rgba(8,9,16,0.35) 100%);
}

.home-hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 480px;
}

.home-hero-copy {
  width: min(560px, 55%);
  color: #fff;
}

.home-hero-copy .brand-hero-eyebrow {
  color: var(--public-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
}

.home-hero-copy .brand-hero-lead {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.home-hero-copy .brand-hero-description {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.home-hero-copy .brand-hero-actions {
  margin-top: 26px;
  gap: 12px;
}

.home-hero-copy .brand-hero-actions .site-contact-button {
  background: var(--public-accent);
  box-shadow: 0 6px 20px rgba(239,45,104,0.4);
}

.home-hero-copy .home-hero-trust {
  margin-top: 28px;
  color: #fff;
}

.home-hero-copy .home-hero-trust-item svg {
  color: var(--public-accent);
}

.home-hero-copy .home-hero-trust-item small {
  color: rgba(255,255,255,0.55);
}

/* Swiper pagination override */
.home-hero-pagination {
  bottom: 18px !important;
}

.home-hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.home-hero-pagination .swiper-pagination-bullet-active {
  background: var(--public-accent);
  transform: scale(1.25);
}

/* ── Activity Bar (marquee) ── */
.home-activity-bar {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 40px;
  background: #0d0e14;
  border-bottom: 1px solid rgba(239,45,104,0.18);
  overflow: hidden;
}

.home-activity-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  min-height: 40px;
  background: var(--public-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.home-activity-label svg {
  width: 14px;
  height: 14px;
}

.home-activity-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.home-activity-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: activity-scroll 28s linear infinite;
}

.home-activity-item {
  display: inline-block;
  padding: 0 32px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
}

.home-activity-item::before {
  content: "·";
  margin-right: 32px;
  color: var(--public-accent);
  opacity: 0.6;
}

@keyframes activity-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.home-activity-bar:hover .home-activity-inner {
  animation-play-state: paused;
}

/* ── Rankings Section ── */
.home-rankings-section {
  padding-top: 42px;
  padding-bottom: 46px;
}

.home-rankings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.home-ranking-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px 18px;
  border: 1px solid var(--public-line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  text-decoration: none;
  color: inherit;
}

.home-ranking-item:hover,
.home-ranking-item:focus-visible {
  border-color: #f0b2c5;
  box-shadow: 0 8px 24px rgba(239,45,104,0.1);
  transform: translateY(-3px);
}

.home-ranking-avatar-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
}

.home-ranking-avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1c2d0;
  background: #f4f4f6;
}

.home-ranking-badge {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--public-green);
  border: 2px solid #fff;
}

.home-ranking-name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--public-ink);
}

.home-ranking-status {
  font-size: 11px;
  color: var(--public-muted);
  font-weight: 600;
}

.home-ranking-status.is-available {
  color: var(--public-green);
}

/* ── Responsive: 900px ── */
@media (max-width: 900px) {
  .home-hero-swiper,
  .home-hero-slide-inner {
    height: 400px;
  }

  .home-hero-copy {
    width: min(460px, 70%);
  }

  .home-hero-copy h1 {
    font-size: 40px;
  }

  .home-hero-copy .brand-hero-lead {
    font-size: 17px;
  }

  .home-rankings-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
}

/* ── Responsive: 600px ── */
@media (max-width: 600px) {
  .home-hero-swiper,
  .home-hero-slide-inner {
    height: 320px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-copy h1 {
    font-size: 30px;
  }

  .home-hero-copy .brand-hero-lead {
    font-size: 15px;
    max-width: 18ch;
  }

  .home-hero-copy .brand-hero-description {
    display: none;
  }

  .home-hero-copy .brand-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .home-hero-copy .brand-hero-actions .site-contact-button,
  .home-hero-copy .brand-hero-actions .brand-secondary-button {
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }

  .home-activity-label {
    padding: 0 10px;
    font-size: 11px;
  }

  .home-activity-item {
    padding: 0 20px;
    font-size: 11px;
  }

  .home-rankings-section {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .home-rankings-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }

  .home-ranking-item {
    padding: 14px 6px 12px;
    gap: 7px;
    border-radius: 10px;
  }

  .home-ranking-avatar-wrap {
    width: 56px;
    height: 56px;
  }

  .home-ranking-avatar {
    width: 56px;
    height: 56px;
  }

  .home-ranking-badge {
    width: 11px;
    height: 11px;
  }

  .home-ranking-name {
    font-size: 12px;
  }

  .home-ranking-status {
    font-size: 10px;
  }
}
