:root {
  --bg: #f3f3f1;
  --paper: #ffffff;
  --ink: #0e0e0e;
  --muted: #626262;
  --line: #dfdfda;
  --line-strong: #b9b9b2;
  --panel: #111111;
  --surface: rgba(249, 236, 225, 0.76);
  --surface-strong: rgba(253, 244, 236, 0.82);
  --surface-soft: rgba(243, 225, 210, 0.74);
  --surface-line: rgba(96, 54, 32, 0.055);
  --surface-shadow: rgba(56, 28, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(800px 360px at 12% 8%, rgba(255, 214, 160, 0.78), transparent 60%),
    radial-gradient(720px 320px at 84% 10%, rgba(224, 181, 118, 0.34), transparent 58%),
    linear-gradient(140deg, #fff1e2 0%, #f8d0bd 35%, #edd1af 62%, #e5d8be 100%);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 40%),
    radial-gradient(circle at 24% 68%, rgba(255, 255, 255, 0.18), transparent 24%);
  opacity: 0.9;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(96, 54, 32, 0.08);
  background: rgba(253, 244, 236, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(56, 28, 16, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 46px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a,
.nav button {
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after,
.nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:hover::after,
.nav button:hover::after {
  transform: scaleX(1);
}

.section {
  padding: 3.8rem 0;
}

.section-tight {
  padding-top: 0;
}

.section-compact {
  padding: 1.2rem 0 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3c3c3c;
}

.required-mark {
  color: #7f1d1d;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.7vw, 4.9rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.01em;
  max-width: 12ch;
}

.lead {
  margin: 1rem 0 0;
  max-width: 48ch;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.75;
}

.hero-main {
  border: 1px solid rgba(96, 54, 32, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 252, 248, 0.96), rgba(250, 241, 234, 0.9));
  padding: clamp(1.2rem, 2.3vw, 2rem);
  box-shadow:
    0 20px 42px rgba(56, 28, 16, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.hero-panel {
  width: min(100%, 420px);
  justify-self: end;
  border-radius: 26px;
  border: 1px solid #262626;
  background:
    linear-gradient(145deg, #0b0b0b, #151515),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 6px);
  color: #f7f7f7;
  padding: clamp(1.2rem, 2.2vw, 1.9rem);
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 0;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 0.95;
}

.hero-panel p {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: #d2d2d2;
  line-height: 1.8;
}

.hero-panel-note {
  color: #cbcbc8;
  margin: 0;
}

.hero-auth {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.hero-auth form {
  display: grid;
  gap: 0.7rem;
}

.hero-auth .field {
  margin: 0;
  gap: 0.42rem;
}

.hero-auth label {
  color: #dcdcdc;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.hero-auth input,
.hero-auth select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f5f5f5;
  border-radius: 10px;
  padding: 0.7rem 0.78rem;
}

.hero-auth input::placeholder {
  color: #b5b5b5;
}

.hero-auth input:focus,
.hero-auth select:focus {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.hero-auth .meta {
  color: #cfcfcf;
  font-size: 0.83rem;
  line-height: 1.5;
}

.hero-auth .btn {
  width: 100%;
  justify-content: center;
  border-color: #f1f1f1;
  background: #f1f1f1;
  color: #111;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  padding: 0.74rem 1rem;
}

.hero-auth .btn:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-auth .btn.alt {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #efefef;
}

.hero-auth .btn.alt:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

#register-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
}

.modal-open {
  overflow: hidden;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  isolation: isolate;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  border: 1px solid var(--surface-line);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 20px 46px rgba(56, 28, 16, 0.12);
  padding: 1.4rem;
}

.modal-card-sm {
  width: min(560px, 100%);
}

.modal-card h2 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
  font-weight: 500;
}

.modal-intro {
  margin-bottom: 1rem;
}

.modal-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.modal-choice-card {
  border: 1px solid var(--surface-line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  min-height: 170px;
  padding: 1.2rem;
  text-align: left;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.modal-choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.modal-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-form-head h2 {
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.request-accept-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  isolation: isolate;
}

.request-accept-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(6px);
}

.request-accept-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  border: 1px solid var(--surface-line);
  border-radius: 26px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 20px 46px rgba(56, 28, 16, 0.12);
  padding: 1.4rem;
}

.request-accept-card .cta-row {
  margin-top: 1rem;
}

#brand-request-accept-date-wrap {
  margin-top: 1rem;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.search-checkbox-grid {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 0.35rem;
  gap: 0.55rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  border: 1px solid var(--surface-line);
  border-radius: 14px;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
}

.checkbox-option input {
  margin: 0;
}

.search-checkbox-grid .checkbox-option {
  min-width: auto;
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 0.28rem;
  padding: 0.2rem 0.1rem;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.search-checkbox-grid .checkbox-option span {
  white-space: nowrap;
  font-size: 0.84rem;
  line-height: 1;
}

.search-checkbox-grid .checkbox-option input {
  transform: scale(0.92);
}

.result-group {
  margin-top: 1.4rem;
}

.result-group:first-child {
  margin-top: 0;
}

.result-group-title {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f9f9f9;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn.alt {
  background: transparent;
  color: var(--ink);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-card-grid {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
}

.home-footer-band {
  margin-top: 1.8rem;
  border: 1px solid rgba(96, 54, 32, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 252, 248, 0.94), rgba(248, 237, 228, 0.9));
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(56, 28, 16, 0.09);
}

.home-footer-contact {
  display: grid;
  gap: 0.2rem;
}

.home-footer-mail {
  margin: 0;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--ink);
}

.home-footer-link {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.home-footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-footer-legal {
  margin: 0;
  text-align: right;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card {
  border: 1px solid var(--surface-line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 1.25rem;
  box-shadow: 0 14px 28px rgba(56, 28, 16, 0.065);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.card p,
.meta {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
}

.home-feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  counter-reset: home-steps;
  --home-step-node-size: 34px;
  --home-step-side-gap: 2.2rem;
}

.home-feature-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.45rem;
  bottom: 0.2rem;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(139, 84, 50, 0.38), rgba(139, 84, 50, 0.12));
}

.home-feature-list li {
  counter-increment: home-steps;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--home-step-node-size) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.home-feature-node {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: var(--home-step-node-size);
  height: var(--home-step-node-size);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(198, 162, 96, 0.96), rgba(171, 138, 78, 0.96));
  box-shadow: 0 0 0 10px rgba(249, 236, 225, 0.98);
  color: #fffaf6;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
}

.home-feature-node::before {
  content: counter(home-steps);
}

.home-feature-copy {
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  min-height: var(--home-step-node-size);
  padding: 0 0 0 var(--home-step-side-gap);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.home-feature-list li:nth-child(odd) .home-feature-copy {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-height: var(--home-step-node-size);
  padding: 0 var(--home-step-side-gap) 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.home-feature-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .home-feature-list::before {
    left: 17px;
    transform: none;
  }

  .home-feature-list li {
    grid-template-columns: var(--home-step-node-size) minmax(0, 1fr);
    margin-bottom: 0.9rem;
  }

  .home-feature-node {
    grid-column: 1;
  }

  .home-feature-copy,
  .home-feature-list li:nth-child(odd) .home-feature-copy {
    grid-column: 2;
    width: 100%;
    min-height: var(--home-step-node-size);
    padding: 0 0 0 1.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(56, 28, 16, 0.065);
}

.form-wrap.flush-top {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.form-wrap h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 500;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field input[type="file"] {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(46, 33, 26, 0.92);
}

.field input[type="file"]::file-selector-button {
  margin-right: 0.85rem;
  border: 1px solid rgba(96, 54, 32, 0.12);
  border-radius: 999px;
  background: rgba(245, 226, 209, 0.86);
  color: rgba(52, 35, 26, 0.92);
  padding: 0.55rem 0.9rem;
  font-family: "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.date-range-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.date-range-field {
  display: grid;
  gap: 0.35rem;
}

.date-range-field span {
  font-family: "Manrope", Arial, sans-serif;
  color: #333;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.field-hint {
  margin: 0.1rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
  padding: 0.2rem 0;
}

.check-grid-stable {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.8rem;
}

.check-grid-stable .check-item {
  flex: 0 0 calc((100% - 1.6rem) / 3);
}

.multi-select {
  position: relative;
}

.multi-select-trigger {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(122, 86, 62, 0.1);
  border-radius: 16px;
  background: rgba(255, 247, 240, 0.72);
  padding: 0.9rem 2.8rem 0.9rem 1rem;
  text-align: left;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.multi-select-trigger::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
}

.multi-select-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.45rem;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid rgba(122, 86, 62, 0.1);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 16px 34px rgba(56, 28, 16, 0.1);
  padding: 0.8rem;
}

.multi-select-menu .check-item {
  min-height: auto;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(122, 86, 62, 0.1);
  border-radius: 12px;
  background: rgba(251, 239, 229, 0.72);
  padding: 0.7rem 0.8rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.check-item input {
  width: auto;
  margin: 0;
}

.check-item span {
  color: var(--ink);
}

label {
  font-family: "Manrope", Arial, sans-serif;
  color: #333;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(122, 86, 62, 0.14);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 252, 248, 0.88);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  color: #241714;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #7f7f77;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.page-actions.flush-top {
  margin-top: 0.95rem;
  margin-bottom: 1.05rem;
}

.page-subtitle {
  margin: 0.7rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
}

.page-subtitle.narrow {
  max-width: 74ch;
}

#talent-subtitle {
  margin-bottom: 2rem;
}

.title-sm {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

#match-results.result-grid {
  display: block;
}

#match-results .result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.result-card {
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  padding: 1.1rem 1rem 1rem;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 10px 22px rgba(56, 28, 16, 0.06);
  cursor: pointer;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 180px;
}

.result-card h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.result-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 132px;
  min-height: 52px;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: rgba(255, 245, 236, 0.82);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.result-card-logo-image {
  display: block;
  width: auto;
  max-width: 148px;
  max-height: 30px;
}

.result-card-logline {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(56, 28, 16, 0.82);
  text-wrap: balance;
}

.result-card .btn {
  margin-top: auto;
  justify-self: center;
  width: auto;
  min-width: 0;
}

.talent-self-card {
  margin-top: 1.2rem;
  border: 1px solid rgba(96, 54, 32, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(255, 249, 243, 0.95), rgba(248, 236, 224, 0.88));
  padding: clamp(1.1rem, 2vw, 1.5rem);
  box-shadow:
    0 24px 42px rgba(56, 28, 16, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.talent-self-shell {
  display: grid;
  gap: 1.15rem;
}

.talent-self-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.talent-self-hero-copy,
.talent-self-summary,
.talent-self-panel,
.talent-self-gallery {
  border: 1px solid rgba(96, 54, 32, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 252, 248, 0.96), rgba(249, 240, 232, 0.9));
  box-shadow:
    0 16px 32px rgba(56, 28, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.talent-self-hero-copy {
  padding: clamp(1.35rem, 2vw, 2rem);
}

.talent-self-panel-title,
.talent-self-summary-label,
.talent-self-link-label {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(89, 54, 34, 0.7);
}

.talent-self-name {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.01em;
}

.talent-self-role {
  margin: 0.85rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(59, 41, 31, 0.9);
}

.talent-self-bio {
  margin: 1rem 0 0;
  max-width: 46ch;
  font-family: "Manrope", Arial, sans-serif;
  color: rgba(54, 42, 34, 0.82);
  line-height: 1.8;
}

.talent-self-inline-panel {
  margin-top: 1rem;
}

.talent-self-inline-panel .talent-self-panel-title {
  margin-bottom: 0.7rem;
  color: #111111;
}

.talent-self-bio-label {
  margin: 1rem 0 0.4rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
}

.talent-self-carousel {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.talent-self-carousel-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 0.8rem;
}

.talent-self-carousel-figure {
  margin: 0;
}

.talent-self-carousel-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(96, 54, 32, 0.08);
  box-shadow: 0 16px 30px rgba(56, 28, 16, 0.09);
}

.talent-self-carousel-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(96, 54, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 246, 238, 0.92);
  color: rgba(52, 35, 26, 0.92);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(56, 28, 16, 0.08);
}

.talent-self-carousel-nav:hover {
  background: rgba(245, 228, 212, 0.95);
}

.talent-self-carousel-meta {
  display: flex;
  justify-content: center;
}

.talent-self-carousel-count {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(89, 54, 34, 0.7);
}

.talent-self-summary {
  padding: 1.1rem;
}

.talent-self-summary-grid {
  display: grid;
  gap: 0.7rem;
}

.talent-self-summary-item {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 247, 240, 0.72);
  border: 1px solid rgba(96, 54, 32, 0.06);
}

.talent-self-summary-item-wide {
  grid-column: 1 / -1;
}

.talent-self-summary-tags {
  margin-top: 0.45rem;
}

.talent-self-summary-tags .talent-self-tags {
  gap: 0.5rem;
}

.talent-self-summary-tags .talent-self-tag {
  min-height: 1.95rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.82rem;
}

.talent-self-summary-value,
.talent-self-link-value {
  display: block;
  margin-top: 0.28rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(27, 22, 18, 0.92);
  word-break: break-word;
}

.talent-self-summary-value a,
.talent-self-link-value a {
  color: inherit;
  text-decoration-color: rgba(89, 54, 34, 0.45);
}

.talent-self-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.talent-self-panel {
  padding: 1.1rem 1.15rem 1.2rem;
}

.talent-self-panel-title {
  margin-bottom: 0.9rem;
}

.talent-self-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.talent-self-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(245, 226, 209, 0.78);
  border: 1px solid rgba(96, 54, 32, 0.08);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(46, 33, 26, 0.92);
  line-height: 1.35;
}

.talent-self-empty {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
  line-height: 1.7;
}

.talent-self-link-list {
  display: grid;
  gap: 1rem;
}

.brand-self-shell .talent-self-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.brand-self-logo-wrap {
  margin-bottom: 0.9rem;
  display: inline-flex;
}

.brand-self-logo-wrap .brand-profile-logo,
.brand-self-logo-wrap .brand-self-logo-image {
  min-width: 0;
}

.brand-self-logo-wrap .brand-self-logo-image {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 78px;
  object-fit: contain;
}

.brand-self-name {
  max-width: 12ch;
}

.brand-self-logline {
  margin: 0.9rem 0 0;
  max-width: 42ch;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(54, 42, 34, 0.82);
}

.brand-self-rich-copy {
  color: rgba(27, 22, 18, 0.92);
}

.brand-self-wide-panel {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .talent-self-card {
    border-radius: 22px;
    padding: 0.9rem;
  }

  .talent-self-hero-copy,
  .talent-self-summary,
  .talent-self-panel,
  .talent-self-gallery {
    border-radius: 20px;
  }

  .talent-self-summary-grid {
    grid-template-columns: 1fr;
  }

  .talent-self-name {
    font-size: 2.35rem;
  }

  .talent-self-carousel-stage {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.55rem;
  }

  .talent-self-carousel-nav {
    width: 38px;
    height: 38px;
  }

  .brand-self-shell .talent-self-hero {
    grid-template-columns: 1fr;
  }
}

.brand-dashboard-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.brand-dashboard-grid-single {
  grid-template-columns: minmax(320px, 420px);
  justify-content: start;
}

.brand-collab-filters {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 220px);
  gap: 0.9rem;
  align-items: end;
}

.messages-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1rem;
  align-items: start;
}

.messages-sidebar,
.messages-main {
  display: grid;
  gap: 1rem;
}

.messages-main-full {
  grid-column: 1 / -1;
}

.thread-list {
  display: grid;
  gap: 0.55rem;
}

.thread-item {
  text-align: left;
  width: 100%;
  border: 1px solid var(--surface-line);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
}

.thread-item strong {
  display: block;
  font-size: 0.9rem;
  color: #141414;
}

.thread-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.thread-item.active {
  border-color: var(--line-strong);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.message-list {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.message-item {
  width: fit-content;
  max-width: 82%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.message-item.mine {
  align-self: flex-end;
  align-items: flex-end;
}

.message-item.theirs {
  align-self: flex-start;
  align-items: flex-start;
}

.message-author {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a6a6a;
}

.message-bubble {
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 0.58rem 0.72rem;
  box-shadow: 0 5px 14px rgba(56, 28, 16, 0.05);
}

.message-item.mine .message-bubble {
  background: #101010;
  border-color: #101010;
  color: #f2f2f2;
}

.message-text {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

.message-time {
  margin: 0.35rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.72rem;
  opacity: 0.72;
}

.message-link {
  margin: 0.42rem 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.86rem;
}

.message-bubble a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.message-image {
  margin-top: 0.5rem;
  width: min(320px, 100%);
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
}

.collab-status-host {
  display: block;
  width: 100%;
}

.collab-status-shell {
  display: grid;
  gap: 1rem;
}

.collab-status-timeline {
  display: grid;
  gap: 0.85rem;
}

.collab-status-step {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.7rem;
  align-items: center;
  row-gap: 0.14rem;
}

.collab-status-content {
  display: grid;
  gap: 0.2rem;
  justify-items: stretch;
  position: relative;
}

.collab-status-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.collab-status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 240, 0.82);
  display: inline-block;
}

.collab-status-label {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  color: #111;
}

.collab-status-agenda-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.collab-status-agenda-btn:hover {
  color: var(--ink);
}

.collab-status-agenda-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  z-index: 8;
  width: min(320px, 92vw);
  border: 1px solid var(--surface-line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 16px 34px rgba(56, 28, 16, 0.1);
  padding: 0.9rem;
}

.collab-status-agenda-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
}

.collab-status-agenda-form {
  margin-top: 0.45rem;
}

.collab-status-step.complete .collab-status-dot {
  background: #111;
  border-color: #111;
}

.collab-status-step.current .collab-status-dot {
  background: #c81f2d;
  border-color: #c81f2d;
}

.collab-status-step.pending .collab-status-label {
  color: var(--muted);
}

.collab-status-next-btn {
  margin-top: 1.15rem;
}

.collab-status-next-spacer {
  margin-top: 1.15rem;
  height: 48px;
}

.faq-list {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.admin-request-table-wrap {
  margin-top: 0.85rem;
  max-height: 255px;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-table-tools {
  margin: 0 0 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 220px);
  gap: 0.9rem;
  align-items: end;
}

.admin-request-table-wrap .brand-collab-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-modal-photo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.admin-profile-stats {
  margin: 0 0 0.8rem;
}

.admin-profile-stats-grid {
  margin-bottom: 1.15rem;
}

.admin-modal-photo {
  margin: 0;
}

.admin-modal-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}

.admin-modal-photo figcaption {
  display: none !important;
}

.admin-thread-history {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.admin-sort-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0;
  cursor: pointer;
}

.admin-sort-header-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.admin-sort-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.admin-sort-icon {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.admin-sort-icon.active {
  color: var(--ink);
}

.admin-sort-btn[data-sort-direction="asc"]::after {
  content: " ↑";
}

.admin-sort-btn[data-sort-direction="desc"]::after {
  content: " ↓";
}

.brand-dashboard-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 1rem;
}

.calendar-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calendar-card {
  min-height: 100%;
}

.calendar-card-compact {
  padding: 0.7rem;
}

.calendar-list {
  min-height: 100%;
}

.calendar-shell {
  display: grid;
  gap: 0.7rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.calendar-toolbar-center {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
}

.calendar-month-label {
  margin: 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: 1rem;
  color: var(--ink);
}

.calendar-month-picker-wrap {
  position: relative;
}

.calendar-month-picker-trigger {
  min-width: 10rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--surface-line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 8px 18px rgba(56, 28, 16, 0.05);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  text-align: center;
  cursor: pointer;
}

.calendar-month-picker-popover {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(280px, 86vw);
  border: 1px solid var(--surface-line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 18px 36px rgba(56, 28, 16, 0.12);
  padding: 0.8rem;
}

.calendar-year-control {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.calendar-year-value {
  min-width: 3.1rem;
  text-align: center;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--ink);
}

.calendar-year-nav {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--surface-line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  color: var(--ink);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-month-option {
  border: 1px solid var(--surface-line);
  border-radius: 12px;
  background: rgba(255, 247, 240, 0.68);
  padding: 0.55rem 0.4rem;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
}

.calendar-month-option.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.calendar-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--surface-line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar-day {
  min-height: 6.2rem;
  display: grid;
  align-content: start;
  gap: 0.22rem;
  padding: 0.38rem;
  border: 1px solid var(--surface-line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  text-align: left;
  cursor: pointer;
}

.calendar-day.is-today {
  border-color: #222;
}

.calendar-day.is-selected {
  background: #111;
  border-color: #111;
}

.calendar-day.is-selected .calendar-day-number,
.calendar-day.is-selected .calendar-day-chip,
.calendar-day.is-selected .calendar-day-more {
  color: #fff;
}

.calendar-day-label {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.calendar-day-number {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.calendar-day-events {
  display: grid;
  gap: 0.3rem;
}

.calendar-day-chip,
.calendar-day-more {
  display: block;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  overflow-wrap: anywhere;
  font-size: 0.64rem;
  line-height: 1.15;
  color: var(--muted);
}

.calendar-day-chip {
  padding: 0.14rem 0.28rem;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.07);
}

.calendar-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.calendar-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.42);
}

.calendar-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid var(--surface-line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 24px 52px rgba(56, 28, 16, 0.12);
  padding: 1.15rem;
}

.calendar-modal-head {
  margin-bottom: 0.9rem;
}

.calendar-modal-head h3 {
  margin: 0.2rem 0 0;
  font-family: "Canela", "Times New Roman", serif;
  font-size: 1.3rem;
  color: var(--ink);
}

.calendar-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
}

.calendar-modal-body {
  display: grid;
  gap: 0.8rem;
}

.calendar-modal-add-title {
  margin: 0.95rem 0 0.45rem;
}

.calendar-inline-form {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
}

.calendar-inline-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
  gap: 0.7rem;
}

.calendar-inline-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.calendar-entry {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
}

.calendar-entry-main {
  display: grid;
  gap: 0.18rem;
}

.calendar-entry-title {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.calendar-entry-date,
.calendar-entry-notes {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--muted);
}

.calendar-entry-link-wrap {
  margin: 0.2rem 0 0;
}

.calendar-entry-link {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.calendar-entry-delete {
  flex-shrink: 0;
}

.admin-space-card {
  display: grid;
  align-content: space-between;
  min-height: 170px;
}

.admin-space-card .eyebrow {
  margin-bottom: 0.7rem;
}

.admin-space-card .meta {
  max-width: 22ch;
}

.admin-space-card-action {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.brand-link-wrap {
  margin-top: 1.15rem;
}

.collab-action {
  margin-top: 0.55rem;
}

.brand-dashboard-section {
  margin-top: 1.4rem;
}


.brand-collab-compare {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.brand-section-title-inline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-section-title-inline .notification-pill {
  min-width: 0;
  padding: 0.28rem 0.6rem;
  font-size: 0.74rem;
  background: #c81f2d;
  border-color: #c81f2d;
  color: #fff;
}

.brand-section-title-inline .notification-pill.is-empty {
  background: #d9d9d4;
  border-color: #d9d9d4;
  color: #5e5e58;
}

.brand-inline-meta {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.brand-inline-meta .notification-pill {
  min-width: 0;
  padding: 0.18rem 0.5rem;
  font-size: 0.7rem;
  background: #c81f2d;
  border-color: #c81f2d;
  color: #fff;
}

.brand-inline-meta .notification-pill.is-empty,
.notification-pill.is-empty {
  background: #d9d9d4;
  border-color: #d9d9d4;
  color: #5e5e58;
}

.notification-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #c81f2d;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Manrope", Arial, sans-serif;
}

.table-count-badge.is-empty {
  background: #d9d9d4;
  color: #5e5e58;
}

.table-stacked-label {
  display: block;
  line-height: 1.1;
}

.notification-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.notification-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 1rem;
}

.notification-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.notification-card-head strong {
  display: block;
  font-size: 0.95rem;
}

.notification-card-time {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.notification-card p {
  margin: 0.45rem 0 0;
}

.notification-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 0.65rem;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(20, 20, 20, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-cta-center {
  display: flex;
  justify-content: center;
}

.brand-request-list,
.brand-collab-list {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.brand-collab-list {
  display: block;
}

.brand-request-card,
.brand-collab-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 0.9rem;
}

.brand-request-card h3 {
  margin: 0 0 0.95rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.brand-dashboard-feature-title {
  margin: 0 0 0.95rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.brand-collab-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: visible;
}

.brand-collab-table th,
.brand-collab-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0.9rem 0.8rem;
  text-align: left;
  vertical-align: top;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
}

.brand-collab-table th:last-child,
.brand-collab-table td:last-child {
  border-right: 0;
}

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

.brand-collab-table th {
  background: rgba(244, 228, 214, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  overflow: visible;
}

.brand-collab-th-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.excel-head-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.excel-head-toggle {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  color: var(--muted);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  padding: 0;
  font-size: 0.72rem;
  line-height: 1;
  cursor: pointer;
}

.excel-head-toggle.active {
  border-color: #111;
  color: #111;
}

.excel-head-toggle svg {
  width: 0.78rem;
  height: 0.78rem;
  display: block;
  margin: 0 auto;
  fill: currentColor;
}

.excel-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 8;
  display: none;
  width: 210px;
  max-height: min(360px, 60vh);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 16px 34px rgba(56, 28, 16, 0.1);
  padding: 0.8rem;
}

.excel-menu.open {
  display: block;
}

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

.excel-menu-sort-row {
  display: flex;
  gap: 0.4rem;
  padding-top: 0;
}

.excel-menu-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.excel-menu-input,
.excel-menu-select {
  width: 100%;
}

.excel-menu-action {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.15rem 0;
  text-align: left;
  font: inherit;
  font-size: 0.84rem;
  color: #111;
  cursor: pointer;
}

.excel-menu-action + .excel-menu-action {
  margin-top: 0.25rem;
}

.excel-menu-sort-icon {
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  color: #111;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.brand-collab-sort-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.brand-collab-sort-btn {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  color: var(--muted);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  padding: 0;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.brand-collab-sort-btn:hover,
.brand-collab-sort-btn:focus-visible,
.brand-collab-sort-btn.active {
  border-color: #111;
  color: #111;
  background: rgba(17, 17, 17, 0.06);
  outline: none;
}

.brand-collab-table-action {
  width: 180px;
}

.brand-collab-table-action .btn {
  white-space: nowrap;
}

.brand-collab-dashboard-table {
  table-layout: auto;
}

.brand-collab-list,
.brand-collab-dashboard-table,
.brand-collab-dashboard-table thead,
.brand-collab-dashboard-table tbody,
.brand-collab-dashboard-table tr,
.brand-collab-dashboard-table th {
  overflow: visible;
}

.brand-collab-dashboard-table th,
.brand-collab-dashboard-table td {
  vertical-align: middle;
}

.brand-collab-dashboard-table th:nth-child(1),
.brand-collab-dashboard-table td:nth-child(1) {
  width: 24%;
}

.brand-collab-dashboard-table th:nth-child(2),
.brand-collab-dashboard-table td:nth-child(2) {
  width: 19%;
}

.brand-collab-dashboard-table th:nth-child(3),
.brand-collab-dashboard-table td:nth-child(3) {
  width: 17%;
  white-space: nowrap;
}

.brand-collab-dashboard-table th:nth-child(4),
.brand-collab-dashboard-table td:nth-child(4) {
  width: 12%;
  white-space: nowrap;
}

.brand-collab-dashboard-table th:nth-child(5),
.brand-collab-dashboard-table td:nth-child(5) {
  width: 92px;
  min-width: 92px;
  text-align: center;
}

.brand-collab-dashboard-table th:nth-child(6),
.brand-collab-dashboard-table td:nth-child(6) {
  width: 148px;
}

.brand-collab-dashboard-table .brand-collab-table-action {
  width: 148px;
  text-align: right;
}

.brand-collab-dashboard-table .brand-collab-table-action .btn {
  padding: 0.62rem 0.85rem;
  font-size: 0.78rem;
}

.results-actions {
  margin-top: 1rem;
}

.brand-detail {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  padding: 1rem;
}

.brand-profile-logo {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 148px;
  min-height: 56px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 248, 241, 0.92), rgba(245, 231, 220, 0.84));
}

.brand-profile-logo span {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.brand-profile-logo-image {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 42px;
}

#brand-page-heading {
  display: flex;
  align-items: center;
}

.brand-page-heading-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 54px;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(96, 54, 32, 0.08);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 248, 241, 0.92), rgba(245, 231, 220, 0.84));
  box-shadow: 0 10px 22px rgba(56, 28, 16, 0.08);
}

.brand-page-heading-logo span {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.brand-page-heading-logo-image {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 34px;
}

.brand-side-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.brand-detail h3 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  font-weight: 500;
}

.profile-title {
  margin: 0 0 0.35rem;
}

.brand-photo-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.brand-photo-grid figure {
  margin: 0;
}

.brand-photo-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.brand-photo-grid figcaption {
  display: none !important;
}

.brand-lookbook-links {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.talent-self-photos {
  margin-top: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
  align-items: start;
}

.talent-self-photos img {
  width: 100%;
  object-fit: cover;
}

.talent-self-photos .talent-photo-portrait img {
  aspect-ratio: 3 / 4;
}

.talent-self-photos .talent-photo-landscape img {
  aspect-ratio: 4 / 3;
}

.talent-self-photos .talent-photo-square img {
  aspect-ratio: 1 / 1;
}

.brand-return-btn {
  margin-top: 1rem;
  margin-bottom: 2.4rem;
  display: inline-flex;
}

.eyebrow-spaced {
  margin-top: 1rem;
}

.booking-form {
  margin-top: 0.35rem;
}

.about-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-linear {
  margin-top: 1.35rem;
  max-width: 100%;
  display: grid;
  gap: 1rem;
}

.about-intro-card,
.about-text-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft));
  box-shadow: 0 12px 28px rgba(56, 28, 16, 0.06);
  padding: 1.45rem 1.55rem;
}

.about-intro-card p,
.about-text-card p {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #242424;
}

.about-text-card .eyebrow {
  margin-bottom: 0.4rem;
}

.about-text-card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #242424;
}

.about-text-card li + li {
  margin-top: 0.5rem;
}

.about-linear > *:nth-child(odd) {
  justify-self: start;
}

.about-linear > *:nth-child(even) {
  justify-self: end;
}

.about-intro-card,
.about-text-card,
.about-quote-card {
  width: min(84%, 940px);
}

.about-lead {
  margin-bottom: 1rem !important;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem) !important;
  line-height: 1.18 !important;
  color: #111 !important;
  font-family: "Cormorant Garamond", "Times New Roman", serif !important;
}

.about-quote-card {
  border-color: #202020;
  border: 1px solid #202020;
  background: #121212;
  color: #f4f4f1;
}

.about-quote-card p {
  color: #f4f4f1;
}

.about-quote-card p:nth-child(2) {
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.45;
}

.about-quote-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.about-signature {
  margin-top: 1rem !important;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.photo-placeholder {
  border-radius: 20px;
  min-height: 220px;
  border: 1px solid #2a2a2a;
  background:
    linear-gradient(135deg, #1c1c1c 0%, #0d0d0d 40%, #3a3a3a 100%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.25), transparent 35%);
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.14s;
}

.fade-up.delay-2 {
  animation-delay: 0.28s;
}

.auth-only {
  display: none;
}

.auth-message {
  margin-top: 0.1rem;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 1.2rem;
}

.text-link {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: 0.15rem;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.demo-actions {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.register-toggle-row {
  margin-top: 0.4rem;
  display: block;
}

.register-text {
  margin: 0;
}

.register-toggle-row .btn {
  display: block;
  margin-top: 0.55rem;
}

.demo-buttons {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.demo-buttons .btn {
  width: 100%;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero,
  .card-grid,
  .auth-layout,
  .result-grid,
  .messages-shell,
  .talent-self-hero,
  .talent-self-sections,
  .brand-dashboard-grid,
  .brand-request-list,
  .brand-collab-list,
  .faq-list,
  .about-grid,
  .brand-side-grid {
    grid-template-columns: 1fr;
  }

  .calendar-workspace,
  .calendar-form-grid {
    grid-template-columns: 1fr;
  }

  .calendar-inline-form-grid {
    grid-template-columns: 1fr;
  }

  .calendar-week-grid {
    gap: 0.22rem;
  }

  .calendar-entry {
    flex-direction: column;
  }

  .calendar-day {
    min-height: 3.8rem;
    padding: 0.3rem;
  }

  .calendar-modal-card {
    width: min(100%, 100%);
    padding: 0.95rem;
  }

  .brand-photo-grid {
    grid-template-columns: 1fr;
  }

  .talent-self-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-footer-band {
    align-items: start;
    flex-direction: column;
  }

  .home-footer-legal {
    text-align: left;
  }

  .modal-choice-grid {
    grid-template-columns: 1fr;
  }

  .modal-form-head {
    align-items: start;
    flex-direction: column;
  }

  .about-linear > *:nth-child(odd),
  .about-linear > *:nth-child(even) {
    justify-self: stretch;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .check-grid-stable .check-item {
    flex-basis: 100%;
  }

  .hero-panel {
    min-height: 250px;
  }

  .topbar-inner {
    align-items: flex-start;
  }
}
