:root {
  --color-bg: #f8f8f6;
  --color-text: #171717;
  --color-accent: #115e59;
  --color-card: #ffffff;
  --color-muted: #666b73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

.catalogue-page {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.catalogue-header h1 {
  margin: 0.1rem 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.catalogue-header p {
  margin: 0;
  color: var(--color-muted);
}

.catalogue-kicker {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.catalogue-filters {
  margin-top: 1.6rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 0.9rem;
}

.catalogue-filters label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.catalogue-filters select {
  width: 100%;
  border: 1px solid #dadde3;
  border-radius: 0.7rem;
  padding: 0.68rem 0.74rem;
  background: #fff;
}

.catalogue-status {
  margin: 0.7rem 0 1.2rem;
  color: var(--color-muted);
  font-weight: 600;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.talent-card {
  background: var(--color-card);
  border: 1px solid #e9ebef;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #111;
}

.video-frame,
.video-thumb,
.video-empty {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  object-fit: cover;
}

.video-empty {
  color: #c6ccd6;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.92rem;
}

.talent-content {
  padding: 0.9rem;
}

.talent-main h2 {
  margin: 0;
  font-size: 1.1rem;
}

.talent-city {
  margin: 0.2rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.talent-distance {
  margin: 0.3rem 0 0;
  color: #1f5c4d;
  font-weight: 700;
  font-size: 0.86rem;
}

.talent-bio {
  margin: 0.7rem 0;
  color: #363a41;
  line-height: 1.35;
  min-height: 2.6rem;
}

.talent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.talent-link {
  text-decoration: none;
  color: var(--color-accent);
  font-weight: 700;
}

.catalogue-empty {
  margin: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 0.7rem;
  color: var(--color-muted);
}

@media (max-width: 800px) {
  .catalogue-filters {
    grid-template-columns: 1fr;
  }
}

.talent-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.talent-back-link:hover {
  text-decoration: underline;
}

.talent-page {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 2.2rem 0 3rem;
}

.talent-status {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

.talent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.talent-column {
  background: #fff;
  border: 1px solid #e9ebef;
  border-radius: 1rem;
  padding: 1rem;
}

.talent-header h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.talent-kicker {
  margin: 0;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.talent-meta {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-weight: 600;
}

.talent-bio-full {
  margin-top: 0.75rem;
  line-height: 1.5;
}

.talent-media {
  margin-top: 0.95rem;
}

.talent-primary-photo {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid #e2ebe6;
  display: block;
}

.talent-primary-photo[hidden] {
  display: none !important;
}

.talent-photo-fallback {
  border: 1px dashed #cad9d0;
  border-radius: 0.85rem;
  background: #f5faf7;
  color: #456156;
  min-height: 240px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.talent-photo-fallback[hidden] {
  display: none !important;
}

.talent-photo-rail {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}

.talent-photo-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.55rem;
  border: 1px solid #d9e7df;
}

.talent-photo-thumb.is-active {
  border-color: #0f6a4e;
}

.talent-portfolio-links {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.9rem;
}

.portfolio-link-card {
  display: grid;
  gap: 0.28rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid #edf0f4;
  border-radius: 0.8rem;
  padding: 0.75rem;
  background: #fff;
}

.portfolio-link-card:hover {
  border-color: #9ebead;
}

.portfolio-link-platform {
  font-weight: 800;
  color: #1d3f33;
}

.portfolio-link-url {
  color: #315246;
  font-weight: 600;
}

.booking-card h2 {
  margin-top: 0;
}

.booking-form {
  display: grid;
  gap: 0.75rem;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.booking-form input {
  width: 100%;
  border: 1px solid #dadde3;
  border-radius: 0.7rem;
  padding: 0.66rem 0.7rem;
}

.booking-picker-trigger {
  width: 100%;
  border: 1px solid #ccddd1;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.62rem 0.68rem;
  text-align: left;
  font: inherit;
  color: #1f3b30;
  font-weight: 600;
  cursor: pointer;
}

.booking-picker-display {
  margin-top: 0.25rem;
  color: #456156;
  font-size: 0.86rem;
  font-weight: 600;
}

.booking-calendar {
  border: 1px solid #d9e6de;
  border-radius: 0.9rem;
  padding: 0.8rem;
  background: #fbfefc;
  display: grid;
  gap: 0.55rem;
}

.booking-calendar[hidden] {
  display: none !important;
}

.booking-calendar-title {
  margin: 0;
  color: #2f5043;
  font-weight: 700;
}

.booking-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-calendar-nav {
  border: 1px solid #ccddd1;
  background: #fff;
  border-radius: 0.55rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-weight: 800;
  color: #284438;
}

.booking-calendar-weekdays,
.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.booking-calendar-weekdays span {
  text-align: center;
  color: #5a7467;
  font-size: 0.78rem;
  font-weight: 700;
}

.booking-calendar-day,
.booking-calendar-day-placeholder {
  min-height: 2rem;
}

.booking-calendar-day {
  border: 1px solid #d7e4dc;
  background: #fff;
  border-radius: 0.55rem;
  cursor: pointer;
  font: inherit;
  color: #1f3d31;
  font-weight: 700;
}

.booking-calendar-day.is-selected {
  border-color: #0f6a4e;
  background: #e8f5ee;
}

.booking-calendar-day.is-today {
  box-shadow: inset 0 0 0 1px #8ec9ad;
}

.booking-calendar-time {
  width: 100%;
  border: 1px solid #ccddd1;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.58rem 0.65rem;
  min-height: 42px;
  font: inherit;
}

.booking-calendar-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}

.booking-help {
  margin: 0;
  color: #3c5a4e;
  font-size: 0.88rem;
}

.booking-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1d2127;
}

.booking-line-total {
  font-size: 1.05rem;
}

.booking-form button[type="submit"] {
  border: 0;
  border-radius: 0.7rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 0.9rem;
  cursor: pointer;
  width: 100%;
}

.booking-form button[type="submit"][hidden] {
  display: none !important;
}

.booking-auth {
  border: 1px solid #d9e6de;
  border-radius: 0.9rem;
  padding: 0.85rem;
  background: #fbfefc;
  display: grid;
  gap: 0.6rem;
}

.booking-auth[hidden] {
  display: none !important;
}

.booking-auth-text {
  margin: 0;
  color: #2f5043;
  font-weight: 600;
  font-size: 0.9rem;
}

.booking-login-form {
  display: grid;
  gap: 0.55rem;
}

.booking-login-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #2d453a;
}

.booking-login-form input {
  width: 100%;
  border: 1px solid #ccddd1;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.58rem 0.65rem;
  font: inherit;
}

.booking-login-submit {
  width: 100%;
  border-radius: 0.65rem !important;
}

.booking-status {
  margin: 0.9rem 0 0;
  color: var(--color-muted);
  font-weight: 600;
}

.talent-empty {
  margin: 0;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .talent-layout {
    grid-template-columns: 1fr;
  }

  .talent-photo-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #102217;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 179, 71, 0.22), transparent 38%),
    radial-gradient(circle at 92% 18%, rgba(33, 171, 118, 0.17), transparent 36%),
    linear-gradient(180deg, #f8f6ef 0%, #eff5ec 44%, #f8fbfa 100%);
}

.home-page {
  width: min(1150px, 94vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  gap: 1.2rem;
}

.home-hero,
.home-metrics,
.home-process,
.home-final-cta {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 34, 23, 0.08);
  border-radius: 1.2rem;
  backdrop-filter: blur(3px);
  animation: reveal-up 600ms ease both;
}

.home-hero {
  padding: 1.4rem;
}

.home-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.home-logo {
  height: 34px;
  width: auto;
  display: block;
}

.home-eyebrow {
  margin: 0;
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #0f6a4e;
  font-weight: 700;
}

.home-chip {
  margin-top: 1rem;
  display: inline-flex;
  border: 1px solid #c9ddcf;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: #335547;
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(250, 255, 251, 0.9);
}

.home-hero h1 {
  margin: 0.55rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.3rem);
  line-height: 1.06;
  max-width: 18ch;
}

.home-subtitle {
  margin: 0.95rem 0 0;
  max-width: 70ch;
  color: #2b3f34;
  line-height: 1.5;
}

.home-cta-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.home-search {
  margin-top: 1.15rem;
  padding: 0.7rem;
  border: 1px solid #d9e7dd;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) auto;
  gap: 0.55rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 249, 244, 0.92) 100%);
}

.home-search label {
  display: grid;
  gap: 0.35rem;
  color: #30453a;
  font-weight: 700;
  font-size: 0.85rem;
}

.home-search input,
.home-search select {
  border: 1px solid #ccddd1;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.58rem 0.65rem;
  min-height: 42px;
  font: inherit;
}

.home-location-field {
  position: relative;
}

.home-suggestions {
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.2rem);
  z-index: 20;
  border: 1px solid #ccddd1;
  border-radius: 0.75rem;
  background: #ffffff;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 10px 24px rgba(24, 47, 37, 0.14);
}

.home-suggestion-item {
  padding: 0.5rem 0.55rem;
  border-radius: 0.55rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: #284438;
}

.home-suggestion-item:hover,
.home-suggestion-item.is-active {
  background: #eef7f1;
}

.home-search-submit {
  align-self: end;
  min-height: 42px;
  white-space: nowrap;
}

.home-search-error {
  margin: 0.55rem 0 0;
  color: #b23d2f;
  min-height: 1.2em;
  font-weight: 700;
  font-size: 0.9rem;
}

.home-search-scope {
  margin: 0.55rem 0 0;
  color: #335547;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn-primary {
  background: #0f6a4e;
  color: #f5fff7;
}

.home-btn-primary:hover {
  background: #09563f;
}

.home-btn-ghost {
  background: transparent;
  color: #0f6a4e;
  border: 1px solid #0f6a4e;
}

.home-proof-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: #33473d;
  display: grid;
  gap: 0.35rem;
}

.home-top-results {
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid #d7e5dc;
  border-radius: 0.95rem;
  background: #fbfefc;
}

.home-top-results-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: #224236;
}

.home-top-results-status {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #456156;
}

.home-top-results-list {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-top-result-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #dde9e2;
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.55rem;
}

.home-top-result-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0.55rem;
  margin-bottom: 0.55rem;
}

.home-top-result-card:hover {
  border-color: #afcbbd;
}

.home-top-result-name {
  margin: 0;
  font-weight: 700;
  color: #1e3c31;
  font-size: 0.92rem;
}

.home-top-result-meta {
  margin: 0.2rem 0 0;
  color: #4c6358;
  font-size: 0.82rem;
}

.home-top-result-distance {
  margin: 0.22rem 0 0;
  color: #1f5c4d;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-top-result-price {
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f6a4e;
}

.home-metrics {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-metrics article {
  border: 1px solid #e4ece7;
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 0.9rem;
}

.metric-value {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #0f6a4e;
  font-weight: 700;
}

.metric-label {
  margin: 0.35rem 0 0;
  color: #3d4d44;
}

.home-process {
  padding: 1.2rem;
}

.home-process h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.7vw, 2rem);
}

.process-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-grid article {
  border-radius: 0.8rem;
  padding: 0.85rem;
  background: linear-gradient(145deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid #e4ece7;
}

.process-grid article > p:first-child {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  margin: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #0f6a4e;
  font-weight: 800;
}

.process-grid h3 {
  margin: 0.65rem 0 0;
}

.process-grid article > p:last-child {
  margin: 0.5rem 0 0;
  color: #415147;
}

.home-final-cta {
  padding: 1.2rem;
  text-align: center;
}

.home-final-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.home-final-cta p {
  margin: 0.6rem auto 1rem;
  max-width: 62ch;
  color: #3e4d44;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .home-search {
    grid-template-columns: 1fr 1fr;
  }

  .home-search-submit {
    grid-column: 1 / -1;
  }

  .home-metrics,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .home-top-results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-search {
    grid-template-columns: 1fr;
  }

  .home-top-results-list {
    grid-template-columns: 1fr;
  }
}

.talent-space-page {
  width: min(860px, 94vw);
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.talent-space-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 34, 23, 0.1);
  border-radius: 1.2rem;
  padding: 1.2rem;
}

.talent-space-header h1 {
  margin: 0.4rem 0 0;
  font-family: "Sora", sans-serif;
}

.talent-space-header p {
  margin: 0.45rem 0 0;
  color: #3b5247;
}

.talent-auth-tabs {
  margin-top: 1rem;
  display: inline-flex;
  border: 1px solid #cfddd4;
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.25rem;
}

.talent-auth-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: transparent;
  color: #3d564a;
  font-weight: 700;
  cursor: pointer;
}

.talent-auth-tab.is-active {
  background: #0f6a4e;
  color: #fff;
}

.talent-form {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.75rem;
}

.talent-form[hidden],
.talent-auth-section[hidden],
.talent-profile-section[hidden] {
  display: none !important;
}

.talent-form label {
  display: grid;
  gap: 0.35rem;
  color: #2d453a;
  font-weight: 700;
}

.talent-form input,
.talent-form textarea {
  border: 1px solid #ccddd1;
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.62rem 0.68rem;
  font: inherit;
}

.talent-location-field {
  position: relative;
}

.talent-photos-block {
  border: 1px solid #d9e6de;
  border-radius: 0.9rem;
  padding: 0.85rem;
  background: #fbfefc;
}

.talent-social-links {
  border: 1px solid #d9e6de;
  border-radius: 0.9rem;
  padding: 0.85rem;
  background: #fbfefc;
  display: grid;
  gap: 0.65rem;
}

.talent-photos-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: #365146;
  font-size: 0.9rem;
}

.talent-photo-upload-row {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.talent-photos-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.7rem;
}

.talent-photo-card {
  border: 1px solid #dfe8e2;
  border-radius: 0.8rem;
  background: #fff;
  overflow: hidden;
}

.talent-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.talent-photo-card-footer {
  padding: 0.45rem;
}

.talent-photo-delete {
  width: 100%;
  border: 1px solid #d7dfda;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.45rem;
  cursor: pointer;
  font-weight: 700;
  color: #365146;
}

.talent-checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.talent-profile-heading {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.talent-profile-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.talent-status-text {
  margin: 0.7rem 0 0;
  color: #305246;
  font-weight: 600;
  min-height: 1.2em;
}

.talent-status-text.is-error {
  color: #b23d2f;
}
