/* =========================================================
   Adverista — Enterprise Digital Marketing & Talent Agency
   Optimized CSS3 Design System (No Frameworks)
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --orange-1: #ff6b00;
  --orange-2: #ff8c00;
  --orange-3: #ffa726;
  --grad-primary: linear-gradient(135deg, var(--orange-1) 0%, var(--orange-2) 50%, var(--orange-3) 100%);
  --grad: var(--grad-primary);
  --grad-soft: linear-gradient(135deg, #fff5eb 0%, #ffe9d2 100%);
  --ink-1: #111111;
  --ink-2: #444444;
  --ink-3: #666666;
  --line: #eeeeee;
  --line-2: #ece7df;
  --bg: #ffffff;
  --bg-alt: #faf8f5;
  --offwhite: #f8f6f2;
  --shadow-sm: 0 4px 14px rgba(17, 17, 17, .06);
  --shadow-md: 0 12px 30px rgba(17, 17, 17, .08);
  --shadow-lg: 0 24px 60px rgba(255, 107, 0, .18);
  --radius-sm: 12px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1240px;
  --ease-bounce: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-mobile-contact {
  padding-bottom: 74px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink-1);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink-2); }

/* ---------- 3. LAYOUT & UTILITIES ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(60px, 8vw, 120px);
}

.section-alt {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-1);
  margin-bottom: 14px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--ink-3);
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(255, 107, 0, .32);
}

.btn-ghost {
  background: #fff;
  color: var(--ink-1);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--orange-1);
  color: var(--orange-1);
}

.btn-dark {
  background: var(--ink-1);
  color: #fff;
}

.btn-dark:hover {
  background: var(--orange-1);
}

/* ---------- 5. HEADER & NAVBAR ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--offwhite);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.site-header.scrolled {
  background: color-mix(in srgb, var(--offwhite) 86%, transparent);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  box-shadow: 0 10px 30px rgba(20, 16, 10, .07);
  border-color: transparent;
}

.top-bar {
  background: #15130f;
  color: #fff;
  font-size: .84rem;
  padding-block: 9px;
  letter-spacing: .01em;
}

.top-bar-inner,
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-bar-inner { justify-content: space-between; gap: 14px; }

.top-bar-info a,
.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7e2da;
  font-weight: 500;
  transition: color .25s ease, transform .25s ease;
}

.top-bar-info a:hover {
  color: var(--orange-3);
  transform: translateY(-1px);
}

.top-bar-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff;
}

.top-bar-support::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37d67a;
  animation: livePulse 2.2s infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(55, 214, 122, .55); }
  70% { box-shadow: 0 0 0 9px rgba(55, 214, 122, 0); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  transition: padding .3s ease;
}

.scrolled .nav { padding-block: 9px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink-1);
  letter-spacing: -.01em;
  z-index: 120;
}

.logo img {
  height: 80px;
  width: auto;
  transition: transform .35s var(--ease-bounce);
}

.logo:hover img { transform: scale(1.05) rotate(-1deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #fff;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  box-shadow: 0 2px 10px rgba(20, 16, 10, .04);
}

.nav-links > li > a,
.nav-links > li > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 9px 15px;
  font-weight: 550;
  font-size: .9rem;
  color: #231f1a;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease-bounce);
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange-1); }

.nav-links > li > a:hover { background: var(--offwhite); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

.nav-links > li.has-mega > button .caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform .35s var(--ease-bounce);
}

.nav-links > li.has-mega:hover > button .caret { transform: rotate(225deg) translate(-1px, -1px); }

.nav-links > li.has-mega.open > button,
.nav-links > li.has-mega:hover > button {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 0, .28);
}

.nav-cta { display: flex; align-items: center; gap: 10px; z-index: 120; }

/* ---------- 6. MEGA MENU ---------- */
.has-mega { position: static; }

.mega {
  position: absolute;
  inset-x: 0;
  top: 100%;
  background: var(--offwhite);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 40px 70px -20px rgba(20, 16, 10, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .38s var(--ease-bounce), visibility .3s;
  padding: 30px 0 34px;
  border-radius: 0 0 28px 28px;
}

.mega::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0 0 28px 28px;
  background: radial-gradient(600px 200px at 12% 0%, rgba(255, 140, 0, .10), transparent 70%);
}

.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 290px;
  gap: 28px;
  position: relative;
}

.mega-col {
  min-width: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .45s var(--ease-bounce);
}

.has-mega:hover .mega .mega-col,
.has-mega.open .mega .mega-col { opacity: 1; transform: translateY(0); }
.mega-col:nth-child(1) { transition-delay: .04s; }
.mega-col:nth-child(2) { transition-delay: .09s; }
.mega-col:nth-child(3) { transition-delay: .14s; }
.mega-col:nth-child(4) { transition-delay: .19s; }

.mega-col h4 {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-1);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-col h4::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.mega-col ul li { margin-bottom: 4px; }

.mega-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: var(--radius);
  transition: background .25s ease, transform .3s var(--ease-bounce), box-shadow .25s ease;
}

.mega-link .mi {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  color: var(--orange-1);
  font-size: .7rem;
  font-weight: 800;
  transition: background .3s ease, color .3s ease, transform .35s var(--ease-bounce);
}

.mega-link strong { display: block; font-size: .92rem; font-weight: 650; color: #1a1712; line-height: 1.3; }
.mega-link small { display: block; font-size: .75rem; color: var(--ink-3); line-height: 1.35; margin-top: 1px; }

.mega-link .ma {
  opacity: 0;
  transform: translateX(-5px);
  color: var(--orange-1);
  font-weight: 700;
  transition: opacity .3s ease, transform .3s ease;
}

.mega-link:hover {
  background: #fff;
  box-shadow: 0 10px 26px -12px rgba(20, 16, 10, .22);
  transform: translateX(3px);
}

.mega-link:hover .mi {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.mega-link:hover strong { color: var(--orange-1); }
.mega-link:hover .ma { opacity: 1; transform: translateX(0); }

.mega-feature {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #15130f;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.mega-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  z-index: -1;
  transition: transform .9s var(--ease-bounce), opacity .5s ease;
}

.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(21, 19, 15, .15), rgba(21, 19, 15, .9));
}

.mega-feature:hover img { transform: scale(1.08); opacity: .55; }

.mega-feature .tag {
  align-self: flex-start;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--grad-primary);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: auto;
}

.mega-feature h5 { font-size: 1.1rem; color: #fff; margin-top: 14px; }
.mega-feature p { font-size: .82rem; color: #ded8cf; margin-top: 6px; }

.mega-feature .go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--orange-3);
}

.mega-feature .go span { transition: transform .3s ease; }
.mega-feature:hover .go span { transform: translateX(5px); }

/* ---------- 7. MOBILE BURGER & BACKDROP ---------- */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line-2);
  z-index: 120;
  position: relative;
  box-shadow: 0 3px 10px rgba(20, 16, 10, .05);
  transition: background .25s, border-color .25s, transform .25s;
}

.burger:active { transform: scale(.94); }
.burger:hover { border-color: var(--orange-2); }

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #15130f;
  border-radius: 2px;
  transition: transform .3s var(--ease-bounce), background .3s;
}

.burger span { position: relative; }
.burger span::before,
.burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.burger.active span { background: transparent; }
.burger.active span::before { top: 0; transform: rotate(45deg); }
.burger.active span::after { top: 0; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 14, 11, .5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  z-index: 150;
}

.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(255, 167, 38, .25), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(255, 107, 0, .18), transparent 60%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  margin: 22px 0 32px;
  color: var(--ink-2);
  max-width: 560px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-3);
  font-size: .9rem;
}

.avatars { display: flex; }

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.avatars img:first-child { margin-left: 0; }

.hero-visual { position: relative; }

.hero-visual > img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.float-card .dot {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.float-card strong { display: block; color: var(--ink-1); font-size: 1rem; }
.float-card small { color: var(--ink-3); font-size: .8rem; }
.fc-1 { top: 8%; left: -30px; }
.fc-2 { bottom: 14%; right: -20px; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- 9. STATS & LOGOS ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  opacity: .7;
}

.logo-strip span {
  font-weight: 800;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: .05em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat .num {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat p { margin-top: 6px; color: var(--ink-3); font-size: .95rem; }

/* ---------- 10. SERVICES & BLOG CARDS ---------- */
.service-card,
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card .thumb,
.blog-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card .thumb img,
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .thumb img,
.blog-card:hover .thumb img { transform: scale(1.08); }

.service-card .body,
.blog-card .body { padding: 26px; }

.service-card h3,
.blog-card h3 { margin-bottom: 10px; }

.service-card p { font-size: .95rem; color: #555; }

.service-card a.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--orange-1);
}

.service-card a.link::after { content: "→"; transition: transform .25s; }
.service-card a.link:hover::after { transform: translateX(4px); }

.blog-card .meta {
  font-size: .8rem;
  color: #999;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 1.2rem; line-height: 1.35; }
.blog-card p { font-size: .93rem; }

/* ---------- 11. SPLIT & CHECKLIST ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.check-list li {
  display: flex;
  gap: 14px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child { border-bottom: none; }

.check-list .ck {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .9rem;
}

.check-list strong { display: block; color: var(--ink-1); margin-bottom: 2px; }

/* ---------- 12. PROCESS STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: #fff;
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.step:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h4 { margin-block: 8px; font-size: 1.15rem; }
.step p { font-size: .92rem; color: var(--ink-3); }

/* ---------- 13. CASE STUDIES ---------- */
.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .85));
}

.case-card .case-body {
  position: relative;
  padding: 28px;
  z-index: 1;
}

.case-card h3 { color: #fff; margin-bottom: 6px; }

.case-card span.tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.case-card:hover img { transform: scale(1.07); }

/* ---------- 14. INDUSTRIES ---------- */
.industry {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.industry:hover {
  transform: translateY(-4px);
  border-color: var(--orange-3);
  box-shadow: var(--shadow-md);
}

.industry img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.industry h4 { font-size: 1.02rem; }

/* ---------- 15. TESTIMONIALS ---------- */
.t-slider { position: relative; overflow: hidden; }
.t-track { display: flex; transition: transform .6s ease; }
.t-slide { flex: 0 0 100%; padding: 10px; }

.t-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.t-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.t-card blockquote {
  font-size: 1.15rem;
  color: #222222;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

.t-card cite { font-style: normal; font-weight: 700; color: var(--ink-1); }
.t-card small { color: var(--ink-3); display: block; }

.t-controls { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: width .3s ease, background .3s ease, border-radius .3s ease;
  cursor: pointer;
}

.t-dot.active {
  background: var(--orange-1);
  width: 30px;
  border-radius: 6px;
}

/* ---------- 16. TEAM ---------- */
.team-card { position: relative; border-radius: 18px; overflow: hidden; }

.team-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform .5s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-card .info {
  position: absolute;
  inset-x: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.team-card h4 { font-size: 1.05rem; }
.team-card small { color: var(--orange-1); font-weight: 600; }

/* ---------- 17. FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item.open {
  border-color: var(--orange-3);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--ink-1);
  font-size: 1.02rem;
}

.faq-q .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--orange-1);
  font-weight: 800;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex-shrink: 0;
}

.faq-item.open .plus {
  background: var(--grad-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding-inline: 26px;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ---------- 18. CTA BANNER ---------- */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 64px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  top: -200px;
  right: -150px;
}

.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, .92); margin-top: 12px; position: relative; }

.cta-banner .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}

.cta-banner .btn-primary { background: #fff; color: var(--orange-1); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.cta-banner .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta-banner .btn-ghost:hover { background: #fff; color: var(--orange-1); }

/* ---------- 19. FOOTER ---------- */
.site-footer {
  position: relative;
  background: #0c0b0a;
  color: #a8a29a;
  padding: 0 0 28px;
  margin-top: 90px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 107, 0, .20), transparent 70%);
  pointer-events: none;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  padding-block: 38px 34px;
  border-bottom: 1px solid #1c1a17;
}

.footer-cta h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.footer-cta p { color: #9a948c; margin-top: 8px; font-size: .94rem; }
.footer-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-cta .btn-ghost { background: transparent; color: #fff; border-color: #2a2723; }
.footer-cta .btn-ghost:hover { border-color: var(--orange-2); color: var(--orange-3); }

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr 1fr 1.25fr;
  gap: 40px;
  padding-block: 54px 46px;
}

.site-footer h5 {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer h5::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-primary);
}

.site-footer .logo {
  margin-bottom: 18px;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  display: inline-flex;
}

.site-footer .logo img { height: 60px; }

.site-footer p { font-size: .9rem; color: #a8a29a; margin-bottom: 14px; line-height: 1.7; }
.site-footer ul li { margin-bottom: 4px; }

.site-footer ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: .9rem;
  color: #a8a29a;
  padding-block: 5px;
  transition: color .28s ease, transform .32s var(--ease-bounce), gap .3s ease;
}

.site-footer ul a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width .32s var(--ease-bounce);
}

.site-footer ul a:hover { color: #fff; transform: translateX(4px); gap: 8px; }
.site-footer ul a:hover::before { width: 12px; }

.foot-contact {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.foot-contact .ic {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 11px;
  background: #171512;
  display: grid;
  place-items: center;
  color: var(--orange-3);
  font-size: .85rem;
  transition: background .3s ease, transform .35s var(--ease-bounce);
}

.foot-contact:hover .ic {
  background: var(--grad-primary);
  color: #fff;
  transform: translateY(-2px) rotate(-6deg);
}

.foot-contact strong { display: block; color: #fff; font-size: .88rem; margin-bottom: 1px; }
.foot-contact span, .foot-contact a { font-size: .87rem; color: #a8a29a; transition: color .25s; }
.foot-contact a:hover { color: var(--orange-3); }

.newsletter { display: flex; gap: 8px; margin-top: 16px; }

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #221f1b;
  background: #141210;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.newsletter input::placeholder { color: #6d675f; }
.newsletter input:focus {
  outline: none;
  border-color: var(--orange-1);
  background: #191612;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

.newsletter button {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 107, 0, .3);
}

.foot-note { font-size: .78rem; color: #6d675f; margin-top: 10px; }

.socials { display: flex; gap: 9px; margin-top: 18px; }

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #171512;
  border: 1px solid #201d19;
  display: grid;
  place-items: center;
  font-size: .85rem;
  color: #fff;
  transition: transform .35s var(--ease-bounce), background .3s ease, border-color .3s ease;
}

.socials a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-4px) scale(1.04);
}

.foot-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.foot-badges span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c8c2ba;
  border: 1px solid #211e1a;
  background: #131110;
  border-radius: 999px;
  padding: 7px 12px;
  transition: border-color .3s, color .3s, transform .3s;
}

.foot-badges span:hover {
  border-color: var(--orange-1);
  color: var(--orange-3);
  transform: translateY(-2px);
}

.foot-bottom {
  position: relative;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid #1c1a17;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .84rem;
}

.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-bottom a { position: relative; transition: color .25s; }
.foot-bottom a:hover { color: var(--orange-3); }

/* ---------- 20. INNER PAGES & CONTACT ---------- */
.page-hero {
  padding-block: 90px 70px;
  background: radial-gradient(800px 500px at 80% 0%, rgba(255, 167, 38, .25), transparent 60%), #fff;
  text-align: center;
}

.crumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: #888888;
  margin-top: 16px;
}

.crumbs a:hover { color: var(--orange-1); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-weight: 600; color: #222222; font-size: .9rem; }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  background: #fafafa;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange-1);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .1);
}

.field .err { display: none; color: #dd3333; font-size: .82rem; margin-top: 4px; }
.field.invalid input, .field.invalid textarea { border-color: #dd3333; }
.field.invalid .err { display: block; }

.info-row { display: flex; gap: 14px; margin-bottom: 24px; }
.info-row .ic {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--orange-1);
  font-weight: 800;
  flex-shrink: 0;
}

.info-row strong { display: block; color: var(--ink-1); margin-bottom: 2px; }

.map-placeholder {
  height: 280px;
  background: var(--grad-soft);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--orange-1);
  font-weight: 600;
  margin-top: 24px;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 90;
  font-weight: 800;
}

.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-4px); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.tick-list li {
  position: relative;
  padding-left: 32px;
  color: #555555;
  line-height: 1.6;
}

.tick-list li strong { color: var(--ink-1); }

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  opacity: .14;
}

.tick-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #f57c00;
  border-bottom: 2px solid #f57c00;
  transform: rotate(-45deg);
}

/* ---------- 21. INFLUENCER & MODEL DIRECTORY ---------- */
.talent-hero { padding-block: 60px 30px; background: linear-gradient(180deg, var(--offwhite), #fff); }
.talent-hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.08; letter-spacing: -.02em; }
.talent-hero p.lead { max-width: 680px; margin-top: 14px; color: var(--ink-3); font-size: 1.06rem; }

.talent-crumb { font-size: .82rem; color: var(--ink-3); margin-bottom: 16px; }
.talent-crumb a { color: var(--ink-3); }
.talent-crumb a:hover { color: var(--orange-1); }

.filter-bar {
  position: sticky;
  top: 96px;
  z-index: 60;
  margin-block: 26px 34px;
  padding: 16px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(20, 16, 10, .06);
  display: grid;
  gap: 12px;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-size: .9rem;
  color: var(--ink-1);
  transition: border-color .25s ease, box-shadow .25s ease;
  appearance: none;
}

.filter-bar select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: var(--orange-2);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .1);
}

.filter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: .9rem;
  color: var(--ink-3);
}

.filter-reset {
  background: none;
  border: none;
  font: inherit;
  color: var(--orange-1);
  font-weight: 700;
  cursor: pointer;
}

.filter-reset:hover { text-decoration: underline; }

.talent-grid { display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }

.talent-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(20, 16, 10, .05);
  transition: transform .45s var(--ease-smooth), box-shadow .45s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.talent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(20, 16, 10, .14);
  border-color: #e3dcd1;
}

.talent-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--offwhite);
}

.talent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-smooth);
}

.talent-card:hover .talent-photo img { transform: scale(1.07); }

.talent-photo .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .94);
  color: var(--ink-1);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.talent-photo .badge.avail { background: var(--grad-primary); color: #fff; }

.talent-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.talent-body h3 { font-size: 1.12rem; letter-spacing: -.01em; }

.talent-attrs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }

.talent-attrs span {
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-2);
  background: var(--offwhite);
  border: 1px solid var(--line-2);
  padding: 5px 9px;
  border-radius: 999px;
}

.talent-spec { font-size: .8rem; color: var(--orange-1); font-weight: 700; }
.talent-body p { font-size: .88rem; color: var(--ink-3); line-height: 1.55; }

.talent-view {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line-2);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-1);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.talent-view span { transition: transform .3s ease; }

.talent-view:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
}

.talent-view:hover span { transform: translateX(5px); }

.talent-empty { display: none; text-align: center; padding: 70px 20px; color: var(--ink-3); }
.talent-empty.show { display: block; }

/* ---------- 22. PROFILE & GALLERY ---------- */
.profile-head { padding-block: 40px 10px; }

.profile-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 44px;
  align-items: start;
}

.profile-portrait {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 22px 50px rgba(20, 16, 10, .12);
  aspect-ratio: 4 / 5;
  animation: floaty 7s ease-in-out infinite;
}

.profile-portrait img { width: 100%; height: 100%; object-fit: cover; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.profile-top h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; margin-bottom: 8px; }
.profile-sub { font-size: 1.06rem; color: var(--ink-2); font-weight: 600; }

.profile-loc {
  margin-top: 6px;
  color: var(--ink-3);
  font-size: .94rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.profile-loc svg { width: 15px; height: 15px; fill: var(--orange-1); flex: none; }

.profile-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }

.profile-pills span {
  font-size: .76rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--offwhite);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}

.profile-pills span.live { background: var(--grad-soft); border-color: #ffd9b8; color: var(--orange-1); }

.profile-intro {
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.75;
  border-left: 3px solid var(--orange-2);
  padding-left: 16px;
  font-style: italic;
}

.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: clamp(420px, 52vw, 640px);
  gap: 14px;
  align-items: stretch;
}

.gallery-grid > * { min-width: 0; min-height: 0; }
.gallery-grid .g-main { height: 100%; }
.gallery-grid .g-side {
  display: grid;
  gap: 14px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
}

.gallery-grid .g-side .g-item { min-height: 0; overflow: hidden; }

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-2);
  cursor: zoom-in;
  background: var(--offwhite);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-smooth);
}

.g-item:hover img { transform: scale(1.06); }

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .4s ease;
}

.g-item:hover::after { opacity: 1; }

/* ---------- 23. LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(12, 10, 8, .94);
  display: none;
  place-items: center;
  padding: 24px;
}

.lightbox.open { display: grid; animation: lbIn .3s ease; }

@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox img {
  max-width: min(94vw, 900px);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  animation: lbZoom .35s var(--ease-smooth);
}

@keyframes lbZoom {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.lb-btn:hover {
  background: var(--orange-1);
  border-color: transparent;
  transform: scale(1.08);
}

.lb-prev { left: 18px; top: 50%; margin-top: -24px; }
.lb-next { right: 18px; top: 50%; margin-top: -24px; }
.lb-close { top: 18px; right: 18px; }

.lb-count {
  position: absolute;
  bottom: 22px;
  inset-x: 0;
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  letter-spacing: .08em;
}

/* ---------- 24. INFO TABLES & BOOKING ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.info-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 18px rgba(20, 16, 10, .05);
}

.info-card h3 { font-size: 1.05rem; margin-bottom: 16px; }

.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding-block: 11px;
  border-bottom: 1px dashed var(--line-2);
  font-size: .92rem;
}

.info-row:last-child { border-bottom: none; }
.info-row dt { color: var(--ink-3); font-weight: 600; }
.info-row dd { color: var(--ink-1); font-weight: 600; }

.booking {
  background: var(--grad-primary);
  color: #fff;
  border-radius: 26px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(255, 107, 0, .28);
}

.booking h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.booking p { color: rgba(255, 255, 255, .92); max-width: 640px; margin: 14px auto 26px; }
.booking-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-wa,
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .3s var(--ease-smooth), box-shadow .3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.btn-wa { background: #25d366; color: #fff; }
.btn-call { background: #fff; color: var(--ink-1); }

.btn-wa:hover,
.btn-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.btn-wa svg,
.btn-call svg { width: 20px; height: 20px; fill: currentColor; }

.mobile-contact {
  position: fixed;
  inset-x: 0;
  bottom: 0;
  z-index: 180;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -6px 22px rgba(20, 16, 10, .1);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .92rem;
}

.mobile-contact .wa { background: #25d366; color: #fff; }
.mobile-contact .call { background: var(--grad-primary); color: #fff; }
.mobile-contact svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- 25. RESPONSIVE MEDIA QUERIES ---------- */
@media (min-width: 1025px) {
  .nav-mobile-cta, .nav-backdrop { display: none; }
}

@media (max-width: 1180px) {
  .talent-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-bar { grid-template-columns: repeat(3, 1fr); top: 14px; }
  .profile-top { grid-template-columns: 330px 1fr; gap: 30px; }
}

@media (max-width: 1024px) {
  .hero-grid, .split, .contact-grid, .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .actions, .footer-cta .actions { justify-content: flex-start; }
  .footer-cta { grid-template-columns: 1fr; padding-block: 34px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; padding-block: 40px; }

  /* Mobile Nav Drawer */
  .burger { display: flex; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 90vw);
    height: 100dvh;
    background: var(--offwhite);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 18px 32px;
    border-radius: 0;
    border: none;
    box-shadow: -30px 0 70px rgba(0, 0, 0, .22);
    transform: translateX(105%);
    transition: transform .45s var(--ease-bounce);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 110;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links::before {
    content: "Menu";
    display: block;
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--orange-1);
    padding: 6px 12px 16px;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid var(--line-2);
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .4s ease, transform .5s var(--ease-bounce);
  }

  .nav-links > li:last-child { border-bottom: none; }
  .nav-links.open > li { opacity: 1; transform: translateX(0); }
  .nav-links.open > li:nth-child(1) { transition-delay: .10s; }
  .nav-links.open > li:nth-child(2) { transition-delay: .15s; }
  .nav-links.open > li:nth-child(3) { transition-delay: .20s; }
  .nav-links.open > li:nth-child(4) { transition-delay: .25s; }
  .nav-links.open > li:nth-child(5) { transition-delay: .30s; }
  .nav-links.open > li:nth-child(6) { transition-delay: .40s; }

  .nav-links > li > a,
  .nav-links > li > button {
    width: 100%;
    padding: 15px 12px;
    justify-content: space-between;
    border-radius: var(--radius);
    font-size: 1.02rem;
    font-weight: 650;
    color: #15130f;
    background: transparent;
    box-shadow: none;
  }

  .nav-links > li > a::after { display: none; }
  .nav-links > li > a:active,
  .nav-links > li > button:active { background: rgba(255, 107, 0, .08); }
  .nav-links > li > a:hover,
  .nav-links > li > button:hover,
  .nav-links > li.has-mega.open > button,
  .nav-links > li.has-mega:hover > button {
    background: linear-gradient(90deg, rgba(255, 107, 0, .10), transparent);
    color: var(--orange-1);
    box-shadow: none;
  }

  .nav-links > li.has-mega > button .caret {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    transition: transform .35s var(--ease-bounce);
  }

  .nav-links > li.has-mega.open > button .caret { transform: rotate(-135deg); }

  /* Mobile Mega Accordion */
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    border-radius: 0;
    transition: max-height .45s var(--ease-bounce), padding .3s ease;
  }

  .mega::before { display: none; }
  .mega .container { width: 100%; padding: 0; }
  .has-mega.open .mega { max-height: 2200px; padding: 2px 2px 14px; }
  .mega-grid { grid-template-columns: 1fr; gap: 12px; }
  .mega-col {
    opacity: 1;
    transform: none;
    background: #fff;
    border: 1px solid var(--line-2);
    border-radius: 16px;
    padding: 14px 12px;
  }

  .mega-col h4 { margin-bottom: 8px; font-size: .66rem; }
  .mega-link { padding: 10px 8px; grid-template-columns: 32px minmax(0, 1fr) 14px; }
  .mega-link .mi { width: 32px; height: 32px; border-radius: 10px; }
  .mega-link small { display: none; }
  .mega-link strong { font-size: .95rem; }
  .mega-link .ma { opacity: .5; transform: none; }
  .mega-feature { min-height: 150px; border-radius: 16px; }
  .mega-feature p { display: none; }

  .nav-mobile-cta {
    display: block;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line-2);
  }

  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
  .nav-mobile-cta .drawer-contact {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    font-size: .86rem;
    color: var(--ink-3);
    text-align: center;
  }

  .nav-mobile-cta .drawer-contact a:hover { color: var(--orange-1); }
}

@media (max-width: 900px) {
  .talent-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-top { grid-template-columns: 1fr; }
  .profile-portrait { max-width: 420px; animation: none; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .gallery-grid .g-main { height: auto; aspect-ratio: 4 / 5; }
  .gallery-grid .g-side { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .g-side .g-item { aspect-ratio: 1; }

  .booking { padding: 32px 20px; }
}

@media (max-width: 768px) {
  .hero { padding-block: 50px 70px; }
  .fc-1, .fc-2 { display: none; }

  .top-bar-info { gap: 14px; justify-content: center; width: 100%; }
  .top-bar-info a.email { display: none; }
  .top-bar-inner { justify-content: center; }

  .t-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .t-card img { margin-inline: auto; }

  .cta-banner { padding: 40px 28px; }
  .mega-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .logo img { height: 60px; }
  .scrolled .logo img { height: 60px; }

  .talent-grid { grid-template-columns: 1fr; gap: 20px; }
  .filter-bar { grid-template-columns: 1fr; position: static; padding: 14px; }

  .info-row { grid-template-columns: 1fr; gap: 2px; }
  .mobile-contact { display: grid; }
  .profile-actions { display: none; }
  .lb-btn { width: 42px; height: 42px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .stat .num { font-size: 2rem; }
  .logo { font-size: 1.1rem; }
  .logo-mark { width: 36px; height: 36px; }
}