@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* Elegant classic palette inspired by dark chocolate brown */
  --primary: #4F3B32;
  --primary-dark: #36251F;
  --primary-soft: #C9A46A;
  --primary-light: #F6EFE6;
  --gold: #EAC99D;
  --gold-dark: #B98742;
  --dark: #2B211C;
  --text: #4A3A32;
  --muted: #7B6A5F;
  --line: #E8DCCF;
  --soft: #F3ECE4;
  --soft-2: #FBF7F1;
  --white: #FFFFFF;
  --success: #6B7D4B;
  --warning: #B98742;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 45px rgba(79, 59, 50, 0.12);
  --shadow-soft: 0 10px 25px rgba(79, 59, 50, 0.08);
  --max: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 59, 50, .10), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(234, 201, 157, .24), transparent 28rem),
    var(--white);
  min-height: 100vh;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.app-shell {
  min-height: 100vh;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(229,231,235,.8);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.03em;
  font-size: 1.35rem;
  cursor: pointer;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background:
    linear-gradient(135deg, var(--dark), var(--primary)),
    var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(79,59,50,.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: .93rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .2s ease;
  min-height: 46px;
  white-space: nowrap;
}

/* .btn:hover {
  transform: translateY(-2px);
} */

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px rgba(79,59,50,.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--primary-soft);
  color: var(--primary);
}

.btn-ghost {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-block {
  width: 100%;
}

.hamburger {
  display: none;
  border: 0;
  background: var(--soft);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.4rem;
}

.mobile-menu {
  display: none;
  padding: 0 0 16px;
}

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

.mobile-menu .nav-link,
.mobile-menu .btn {
  width: 100%;
  justify-content: flex-start;
  border-radius: 14px;
  margin-top: 6px;
}

main {
  padding-bottom: 80px;
}

.page {
  display: none;
  animation: fadeUp .28s ease both;
}

.page.active {
  display: block;
}

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

section {
  padding: 74px 0;
}

.section-soft {
  background: rgba(248,250,252,.75);
  border-block: 1px solid rgba(229,231,235,.8);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 650px;
  margin-top: 18px;
}

.hero {
  padding: 86px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 610px;
}

.stat-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  color: var(--dark);
  font-weight: 900;
  font-size: 1.35rem;
}

.stat-label {
  color: var(--muted);
  font-size: .87rem;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(234,201,157,.24), rgba(255,255,255,.72)),
    white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229,231,235,.9);
  overflow: hidden;
}

.hero-visual:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(234,201,157,.26);
  filter: blur(8px);
  right: -70px;
  top: -60px;
}

.mock-browser {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.browser-bar {
  height: 42px;
  background: var(--soft-2);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.dot:nth-child(1) { background: #8E4B3F; }
.dot:nth-child(2) { background: #C9A46A; }
.dot:nth-child(3) { background: #8DA36A; }

.browser-content {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.mini-hero {
  border-radius: 18px;
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(54,37,31,.96), rgba(79,59,50,.92)),
    var(--dark);
  padding: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  max-width: 260px;
  line-height: 1.05;
}

.mini-pill {
  width: fit-content;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .74rem;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: white;
}

.mini-thumb {
  height: 76px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--soft));
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.mini-card strong {
  color: var(--dark);
  font-size: .92rem;
  display: block;
  line-height: 1.2;
}

.mini-card span {
  color: var(--muted);
  font-size: .76rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  left: -12px;
  bottom: 52px;
  width: 210px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.floating-card.right {
  left: auto;
  right: -8px;
  bottom: 116px;
}

.floating-card .small-title {
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
}

.floating-card .small-text {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 4px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  /* transform: translateY(-4px); */
  box-shadow: var(--shadow);
  border-color: rgba(201,164,106,.70);
}

.clickable {
  cursor: pointer;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin-top: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.tag.primary {
  background: var(--primary-light);
  border-color: rgba(201,164,106,.45);
  color: var(--primary);
}

.tag.success {
  background: #EEF3E6;
  border-color: #D7E1C8;
  color: #5F6F3E;
}

.avatar {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(234,201,157,.28), rgba(17,24,39,.08)),
    var(--soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.talent-card {
  padding: 0;
  overflow: hidden;
}

.talent-card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.talent-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.talent-card-body {
  padding: 22px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.portfolio-thumb {
  height: 210px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--soft-2));
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  overflow: hidden;
}

.portfolio-thumb.dark {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: white;
}

.portfolio-thumb.orange {
  background: linear-gradient(135deg, #FBF7F1, #EAC99D);
}

.portfolio-thumb.blue {
  background: linear-gradient(135deg, #F6EFE6, #D8C2A7);
}

.portfolio-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: .86rem;
  margin: 8px 0;
}

.talent-detail-portfolio-grid .card {
  padding: 26px;
}

.talent-detail-portfolio-grid .portfolio-thumb {
  height: 300px;
  border-radius: 24px;
  margin-bottom: 20px;
  font-size: 3.2rem;
}

.talent-detail-portfolio-grid h3 {
  font-size: 1.7rem;
}

.price {
  font-size: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--dark);
  margin-top: 18px;
}

.price small {
  font-size: .9rem;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li:before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .75rem;
  margin-top: 2px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  position: relative;
}

.step-card:before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(79,59,50,.18);
}

.tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}

.search {
  min-width: min(100%, 340px);
  flex: 1;
  position: relative;
}

.search input,
.form-control,
.form-select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 14px 16px;
  color: var(--dark);
  outline: none;
  transition: .2s ease;
}

.search input:focus,
.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 4px rgba(185,135,66,.13);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: .2s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.page-header {
  padding: 66px 0 34px;
}

.breadcrumb {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb span {
  color: var(--primary);
  cursor: pointer;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 24px;
  align-items: start;
}

.sticky-side {
  position: sticky;
  top: 100px;
}

.detail-hero-card {
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(54,37,31,.97), rgba(79,59,50,.92)),
    var(--dark);
  color: white;
  padding: 34px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
}

.detail-hero-card:after {
  content: "";
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  position: absolute;
  right: -80px;
  top: -90px;
}

.detail-hero-card h1,
.detail-hero-card h2 {
  color: white;
  position: relative;
  z-index: 1;
}

.detail-hero-card p {
  color: rgba(255,255,255,.78);
  max-width: 720px;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.info-block {
  margin-top: 22px;
}

.info-block h3 {
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 900;
  color: var(--dark);
  font-size: .94rem;
}

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

.summary-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row strong {
  color: var(--dark);
}

.empty-state {
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 38px;
  text-align: center;
  color: var(--muted);
}

.cta {
  border-radius: 34px;
  padding: 42px;
  background:
    linear-gradient(135deg, var(--dark), var(--primary)),
    var(--dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta h2 {
  color: white;
}

.cta p {
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin-top: 10px;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.68);
}

.footer h4 {
  color: white;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #6B7D4B;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(107,125,75,.32);
  font-size: 1.6rem;
  border: 0;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: 26px;
  z-index: 1200;
  background: var(--dark);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  font-weight: 800;
  font-size: .92rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43,33,28,.58);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(680px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: white;
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(43,33,28,.24);
  padding: 24px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.close-btn {
  border: 0;
  background: var(--soft);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.2rem;
}

.hidden {
  display: none !important;
}


/* Elegant classic refinements */
body {
  background:
    radial-gradient(circle at top left, rgba(79, 59, 50, .10), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(234, 201, 157, .22), transparent 28rem),
    linear-gradient(180deg, #FBF7F1 0%, #FFFFFF 38%, #FBF7F1 100%);
}

.brand,
.btn,
.nav-link,
.tag,
.stat-number,
.form-group label,
.filter-tab,
.eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: normal;
}

.brand span {
  letter-spacing: -.02em;
}

.brand-mark {
  color: var(--gold);
  border: 1px solid rgba(234, 201, 157, .35);
  background:
    linear-gradient(135deg, #2B211C, #4F3B32 58%, #7A5A45),
    var(--primary);
  box-shadow: 0 12px 28px rgba(79,59,50,.24);
}

.navbar {
  background: rgba(251, 247, 241, .88);
  border-bottom: 1px solid rgba(232,220,207,.88);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
  background: rgba(234, 201, 157, .28);
}

.btn-primary {
  color: var(--gold);
  background:
    linear-gradient(135deg, #36251F, #4F3B32 62%, #6B4D3C);
  border: 1px solid rgba(234, 201, 157, .28);
  box-shadow: 0 14px 28px rgba(79,59,50,.22);
}

.btn-primary:hover {
  background:
    linear-gradient(135deg, #2B211C, #3D2C25 62%, #5A4032);
  color: #F8E5C8;
}

.btn-secondary {
  background: rgba(255,255,255,.72);
  border-color: var(--line);
  color: var(--dark);
}

.btn-secondary:hover {
  border-color: var(--gold-dark);
  color: var(--primary-dark);
  background: #FBF7F1;
}

.btn-ghost {
  background: rgba(234, 201, 157, .22);
  color: var(--primary-dark);
  border: 1px solid rgba(201, 164, 106, .28);
}

.eyebrow {
  color: var(--gold-dark);
  letter-spacing: .13em;
}

h1, h2, h3, h4 {
  color: var(--dark);
  letter-spacing: -.025em;
}

.hero-visual {
  background:
    linear-gradient(135deg, rgba(234,201,157,.22), rgba(255,255,255,.82)),
    #FBF7F1;
  border: 1px solid rgba(232,220,207,.95);
}

.hero-visual:before {
  background: rgba(234,201,157,.30);
}

.mock-browser,
.card,
.stat-card,
.floating-card,
.modal {
  background: rgba(255,255,255,.88);
  border-color: rgba(232,220,207,.95);
}

.mini-hero,
.detail-hero-card,
.cta,
.footer {
  background:
    linear-gradient(135deg, #2B211C, #4F3B32 58%, #6E5140),
    var(--dark);
}

.mini-pill,
.detail-hero-card .tag.primary {
  color: var(--gold) !important;
  background: rgba(234,201,157,.12) !important;
  border-color: rgba(234,201,157,.30) !important;
}

.mini-thumb,
.icon-box,
.portfolio-thumb {
  background: linear-gradient(135deg, #F6EFE6, #EAC99D);
  color: var(--primary-dark);
}

.portfolio-thumb.dark {
  background: linear-gradient(135deg, #2B211C, #4F3B32 62%, #C9A46A);
  color: #F8E5C8;
}

.tag.primary {
  color: var(--primary-dark);
  background: rgba(234,201,157,.24);
  border-color: rgba(201,164,106,.45);
}

.tag.success {
  background: #EEF3E6;
  border-color: #D7E1C8;
  color: #5F6F3E;
}

.avatar {
  color: var(--primary-dark);
  background:
    linear-gradient(135deg, rgba(234,201,157,.34), rgba(79,59,50,.08)),
    var(--soft);
  border: 1px solid rgba(232,220,207,.95);
}

.card:hover {
  border-color: rgba(201,164,106,.70);
}

.feature-list li:before,
.step-card:before {
  color: var(--gold);
  background:
    linear-gradient(135deg, #36251F, #4F3B32);
  box-shadow: 0 10px 20px rgba(79,59,50,.18);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--gold);
}

.search input:focus,
.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(185,135,66,.13);
}

.breadcrumb span {
  color: var(--gold-dark);
}

.price {
  color: var(--primary-dark);
}

.footer-bottom {
  border-top-color: rgba(234,201,157,.18);
}

.wa-float {
  background: #6B7D4B;
  box-shadow: 0 16px 36px rgba(107,125,75,.32);
}


.home-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: 26px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,239,230,.86)),
    var(--white);
  border: 1px solid rgba(232,220,207,.95);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.home-about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.home-about-points {
  display: grid;
  gap: 14px;
}

.home-point {
  background:
    linear-gradient(135deg, #2B211C, #4F3B32 65%, #6E5140);
  border: 1px solid rgba(234,201,157,.24);
  border-radius: 24px;
  padding: 20px;
  color: #F8E5C8;
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 118px;
}

.home-point span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold);
}

.home-point strong {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 800;
}

.home-talent-card {
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(232,220,207,.95);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
  overflow: hidden;
}

.home-talent-card:hover {
  /* transform: translateY(-4px); */
  border-color: rgba(201,164,106,.70);
  box-shadow: var(--shadow);
}

.talent-photo {
  height: 285px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(234,201,157,.25), rgba(79,59,50,.16)),
    var(--soft);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.talent-photo:after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 46%;
  border-radius: 999px 999px 18px 18px;
  background: rgba(79,59,50,.10);
}

.home-talent-quote {
  padding: 4px 4px 10px;
}

.home-talent-quote h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.home-talent-quote p {
  color: var(--muted);
  margin-top: 0;
  font-size: .95rem;
}

.home-talent-quote blockquote {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--gold-dark);
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
  font-style: italic;
}


.cs-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: 34px;
  margin-bottom: 26px;
  background:
    linear-gradient(135deg, #2B211C, #4F3B32 62%, #6E5140),
    var(--dark);
  color: #F8E5C8;
  border: 1px solid rgba(234,201,157,.24);
  box-shadow: var(--shadow);
}

.cs-hero-card h2 {
  color: #F8E5C8;
}

.cs-hero-card p {
  color: rgba(248,229,200,.78);
  max-width: 780px;
  margin-top: 12px;
}

.cs-status-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(234,201,157,.24);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.cs-status-box strong {
  font-size: 1.15rem;
  line-height: 1.35;
  color: #F8E5C8;
}

.cs-status-box small {
  color: rgba(248,229,200,.70);
  font-weight: 700;
}

.cs-contact-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cs-contact-rect {
  min-height: 92px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(232,220,207,.95);
  box-shadow: var(--shadow-soft);
  transition: .2s ease;
}

.cs-contact-rect:hover {
  /* transform: translateY(-3px); */
  border-color: rgba(201,164,106,.70);
  box-shadow: var(--shadow);
  background: #FBF7F1;
}

.cs-contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #F6EFE6, #EAC99D);
  border: 1px solid rgba(201,164,106,.35);
}

.cs-contact-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cs-contact-content strong {
  color: var(--dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.cs-contact-content small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cs-note {
  margin-top: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,239,230,.86));
}

@media (max-width: 1020px) {
  .hero-grid,
  .detail-layout,
  .cta,
  .home-about-card,
  .cs-hero-card {
    grid-template-columns: 1fr;
  }

  .sticky-side {
    position: static;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: grid;
    place-items: center;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 44px;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .form-grid,
  .stat-row,
  .footer-grid,
  .cs-contact-grid {
    grid-template-columns: 1fr;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta {
    padding: 30px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .card-actions,
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

      .portfolio-thumb {
        height: 180px;
      }

      .talent-detail-portfolio-grid .portfolio-thumb {
        height: 220px;
      }

      .detail-hero-card {
        padding: 26px;
      }
}
