:root {
  --font-sans: "thmanyah Sans", "Thmanyah Sans", "Thmanyah", Tahoma, Arial, sans-serif;
  --font-display: "thmanyah Serif Display", "Thmanyah Serif Display", "thmanyah Sans", "Thmanyah Sans", Tahoma, Arial, sans-serif;
  --ink: #080808;
  --muted: #5b5752;
  --paper: #fafafa;
  --surface: #ffffff;
  --line: #e5e5e5;
  --accent: #e16e11;
  --red: #e16e11;
  --teal: #080808;
  --gold: #e16e11;
  --blue: #080808;
  --shadow: 0 20px 60px rgba(8, 8, 8, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
}

a {
  color: inherit;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.stats {
  order: 2;
}

#personal {
  order: 3;
}

#cv {
  order: 4;
}

#work {
  order: 5;
}

#clients {
  order: 6;
}

#production {
  order: 7;
}

#contact {
  order: 8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  padding: 5px;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: #eef2f7;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.language-switcher button.active {
  color: #fff;
  background: var(--ink);
}

[dir="ltr"] .brand,
[dir="ltr"] .hero-actions,
[dir="ltr"] .site-header {
  direction: ltr;
}

[dir="ltr"] .timeline div {
  padding-right: 0;
  padding-left: 20px;
}

[dir="ltr"] .timeline div::before {
  right: auto;
  left: 0;
}

[dir="ltr"] .production-card .multi-name {
  text-align: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: clamp(560px, calc(100svh - 150px), 760px);
  padding: clamp(26px, 5vw, 68px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(115deg, rgba(225, 110, 17, 0.08), transparent 42%),
    linear-gradient(295deg, rgba(8, 8, 8, 0.05), transparent 44%),
    #fafafa;
}

.hero-media {
  position: relative;
  min-height: 380px;
  max-width: 560px;
  max-height: 620px;
  justify-self: center;
  border-radius: 8px;
  overflow: hidden;
  background: #080808;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(8, 8, 8, 0.62));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  margin-bottom: 0;
  font-size: clamp(3.8rem, 10vw, 8rem);
  line-height: 0.96;
}

.hero-name {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
}

.lead {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  line-height: 1.9;
}

.lead p {
  margin-bottom: 12px;
}

.lead p:last-child {
  margin-bottom: 0;
}

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

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-quick-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-quick-links a:hover,
.hero-quick-links a:focus-visible {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.hero-quick-links a:first-child {
  color: #fff;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.btn.primary {
  color: #fff;
  background: var(--ink);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats div {
  padding: 26px clamp(16px, 3vw, 34px);
  background: var(--surface);
}

.stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.stats span {
  color: var(--muted);
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 92px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: var(--font-display);
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.12;
}

.collapsible-section > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.06);
  cursor: pointer;
  list-style: none;
}

.collapsible-section > summary::-webkit-details-marker {
  display: none;
}

.collapsible-section > summary .section-heading {
  margin-bottom: 0;
}

.toggle-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.toggle-symbol::before {
  content: "+";
}

.collapsible-section[open] .toggle-symbol::before {
  content: "-";
}

.collapsible-content {
  margin-top: 18px;
}

.personal-band {
  background:
    linear-gradient(115deg, rgba(225, 110, 17, 0.07), transparent 42%),
    #ffffff;
}

.personal-card {
  max-width: 920px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.06);
}

.personal-card p {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.personal-card p:last-child {
  margin-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.about-layout p {
  color: var(--ink);
  font-size: 1.08rem;
}

.merged-about {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.merged-about h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.15;
}

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

.focus-list span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 700;
}

.focus-list span::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--teal);
}

.cv-band {
  background:
    linear-gradient(270deg, rgba(225, 110, 17, 0.06), transparent 38%),
    #ffffff;
}

.cv-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cv-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cv-wide {
  grid-column: span 2;
}

.cv-panel h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  position: relative;
  padding-right: 20px;
}

.timeline div::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.timeline span,
.cv-list span {
  display: block;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
}

.timeline strong {
  display: block;
  margin: 2px 0;
  font-size: 1rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.cv-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-list li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.55;
}

.cv-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cv-list.compact li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(225, 110, 17, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(225, 110, 17, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.language-bars {
  display: grid;
  gap: 12px;
}

.language-bars div {
  display: grid;
  gap: 6px;
}

.language-bars span {
  color: var(--ink);
  font-weight: 700;
}

.language-bars strong {
  position: relative;
  display: block;
  overflow: hidden;
  height: 30px;
  padding-left: 10px;
  border-radius: 999px;
  color: #fff;
  background: #e5e7eb;
  text-align: left;
  line-height: 30px;
  direction: ltr;
}

.language-bars strong::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  content: "";
  background: var(--ink);
  z-index: 0;
}

.language-bars strong {
  isolation: isolate;
}

.language-bars strong::after {
  position: absolute;
  inset: 0 10px 0 auto;
  content: attr(style);
  display: none;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.achievement-grid div {
  min-height: 116px;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.achievement-grid strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
}

.achievement-grid span {
  display: block;
  margin-top: 8px;
  color: #e5e7eb;
  font-size: 0.92rem;
  line-height: 1.5;
}

.production-band {
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.08), transparent 42%),
    #f7f7f7;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-card {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.client-logo {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent),
    var(--logo-color, var(--teal));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--logo-color, var(--teal)) 28%, transparent);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  direction: ltr;
}

.client-logo.has-image {
  width: 96px;
  height: 76px;
  padding: 9px;
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.07);
  direction: inherit;
}

.client-logo.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-logo.logo-lift img {
  transform: translateY(-4px) scale(0.96);
  transform-origin: center;
}

.client-logo.logo-grow img {
  transform: scale(1.14);
  transform-origin: center;
}

.client-card strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.client-card:hover,
.client-card:focus-within {
  border-color: color-mix(in srgb, var(--logo-color, var(--teal)) 48%, var(--line));
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.08);
  transform: translateY(-3px);
}

.client-card:nth-child(6n + 1) {
  --logo-color: #080808;
}

.client-card:nth-child(6n + 2) {
  --logo-color: #e16e11;
}

.client-card:nth-child(6n + 3) {
  --logo-color: #080808;
}

.client-card:nth-child(6n + 4) {
  --logo-color: #e16e11;
}

.client-card:nth-child(6n + 5) {
  --logo-color: #080808;
}

.client-card:nth-child(6n + 6) {
  --logo-color: #e16e11;
}

.production-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.production-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
}

.production-card h3 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.production-card p {
  color: var(--ink);
}

.production-card .multi-name {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
  direction: ltr;
  text-align: right;
}

.account-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.account-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(225, 110, 17, 0.28);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(225, 110, 17, 0.06);
  font-weight: 700;
  text-decoration: none;
}

.account-links a:hover,
.account-links a:focus-visible {
  color: #fff;
  background: var(--teal);
}

.yt-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid rgba(225, 110, 17, 0.28);
  border-radius: 8px;
  color: var(--red);
  background: rgba(225, 110, 17, 0.06);
  font-weight: 700;
  text-decoration: none;
}

.yt-link svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

.yt-link:hover,
.yt-link:focus-visible {
  color: #fff;
  background: var(--red);
}

.work-band {
  color: #fff;
  background: var(--ink);
}

.work-band .eyebrow {
  color: var(--accent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card,
.playlist-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.work-card {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 22px;
  color: #fff;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-card .work-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  line-height: 1;
  border: 1px solid rgba(225, 110, 17, 0.38);
  font-weight: 700;
}

.work-card h3 {
  font-family: var(--font-display);
  margin: 10px 0;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.28;
}

.work-card small {
  color: #d6dce7;
  font-weight: 700;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(225, 110, 17, 0.58);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.production-management {
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.06), transparent 44%),
    #ffffff;
}

.production-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.production-flow article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.production-flow span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 700;
}

.production-flow h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.3;
}

.production-flow p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.playlist-card {
  background: var(--surface);
  border-color: var(--line);
}

.playlist-card h3 {
  min-height: 66px;
  margin: 0;
  padding: 14px;
  font-size: 1.03rem;
}

.playlist-thumb {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  padding: 16px;
  color: #fff;
  background: #080808;
  text-decoration: none;
}

.playlist-thumb::before,
.playlist-thumb::after {
  position: absolute;
  content: "";
}

.playlist-thumb::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.84)),
    var(--thumb-bg);
  background-position: center;
  background-size: cover;
  transition: transform 220ms ease;
}

.playlist-thumb::after {
  display: grid;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: "▶";
  background: var(--red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1;
}

.playlist-thumb strong,
.playlist-thumb span {
  position: relative;
  z-index: 1;
}

.playlist-thumb strong {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.thumb-label {
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  direction: ltr;
}

.play-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.playlist-thumb:hover::before,
.playlist-thumb:focus-visible::before {
  transform: scale(1.05);
}

.thumb-news {
  --thumb-bg:
    radial-gradient(circle at 78% 20%, rgba(225, 110, 17, 0.8), transparent 26%),
    linear-gradient(135deg, #080808 0%, #1d1d1d 54%, #080808 100%);
}

.thumb-directing {
  --thumb-bg:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 18px 18px,
    radial-gradient(circle at 25% 30%, rgba(225, 110, 17, 0.64), transparent 30%),
    linear-gradient(135deg, #080808 0%, #1d1d1d 55%, #080808 100%);
}

.thumb-reports {
  --thumb-bg:
    linear-gradient(135deg, rgba(225, 110, 17, 0.78), transparent 35%),
    radial-gradient(circle at 82% 34%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #1d1d1d 0%, #080808 100%);
}

.thumb-human {
  --thumb-bg:
    radial-gradient(circle at 72% 28%, rgba(248, 250, 252, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(225, 110, 17, 0.72), transparent 46%),
    linear-gradient(135deg, #080808 0%, #2b2b2b 100%);
}

.samples {
  background: #eef2f7;
}

.sample-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sample-list a {
  display: block;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.sample-list span {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(28, 28, 28, 0.96) 52%, rgba(225, 110, 17, 0.9)),
    var(--ink);
}

.contact-band .section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.contact-band .eyebrow {
  color: var(--accent);
}

.contact-band h2 {
  color: #fff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(58px, 1fr));
  gap: clamp(10px, 1.6vw, 16px);
  max-width: 1060px;
  margin-inline: auto;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.social-grid a {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  min-height: 84px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    color-mix(in srgb, var(--social-color) 18%, transparent);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-grid a::before {
  position: absolute;
  inset: auto 16% 12px 16%;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: var(--social-color);
  opacity: 0.85;
}

.social-grid svg {
  position: relative;
  z-index: 1;
  width: clamp(30px, 4vw, 44px);
  height: clamp(30px, 4vw, 44px);
  fill: currentColor;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.social-grid a:hover,
.social-grid a:focus-visible {
  color: #fff;
  border-color: color-mix(in srgb, var(--social-color) 62%, #ffffff);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--social-color) 82%, #ffffff 6%), var(--social-color));
  box-shadow: 0 18px 38px color-mix(in srgb, var(--social-color) 36%, transparent);
  transform: translateY(-5px);
}

.social-grid a:nth-child(1) {
  --social-color: var(--accent);
}

.social-grid a:nth-child(2) {
  --social-color: var(--accent);
}

.social-grid a:nth-child(3) {
  --social-color: var(--ink);
}

.social-grid a:nth-child(4) {
  --social-color: var(--ink);
}

.social-grid a:nth-child(5) {
  --social-color: var(--accent);
}

.social-grid a:nth-child(6) {
  --social-color: var(--accent);
}

.social-grid a:nth-child(7) {
  --social-color: var(--ink);
}

.social-grid a:nth-child(8) {
  --social-color: var(--accent);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 92px);
  color: #d6dce7;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .stats,
  .cv-layout,
  .production-grid,
  .clients-grid,
  .production-flow,
  .work-grid,
  .playlist-grid,
  .sample-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-wide {
    grid-column: span 2;
  }

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

  .social-grid a {
    min-height: 72px;
  }
}

@media (max-width: 620px) {
  .main-nav {
    width: 100%;
  }

  .main-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 300px;
  }

  .stats,
  .focus-list,
  .cv-layout,
  .production-grid,
  .production-flow,
  .work-grid,
  .playlist-grid,
  .sample-list {
    grid-template-columns: 1fr;
  }

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

  .client-card {
    min-height: 132px;
  }

  .cv-wide {
    grid-column: span 1;
  }

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

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

  .hero-actions,
  .hero-quick-links,
  .account-links,
  .btn {
    width: 100%;
  }

  .hero-quick-links a {
    flex: 1 1 calc(50% - 8px);
  }

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

/* Template-inspired editorial layout */
body {
  background: #ffffff;
}

main {
  gap: 0;
}

.site-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 34px);
  border: 0;
  background: rgba(255, 255, 255, 0.96);
}

.site-header::after {
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  bottom: 0;
  left: clamp(18px, 4vw, 34px);
  height: 1px;
  content: "";
  background: rgba(8, 8, 8, 0.1);
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 48px;
  padding: 6px;
  background: var(--ink);
}

.brand strong {
  font-size: 1rem;
}

.main-nav {
  justify-content: center;
  gap: 2px;
  color: var(--ink);
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}

.language-switcher {
  border-color: rgba(8, 8, 8, 0.14);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.06);
}

.hero {
  position: relative;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  max-width: 1240px;
  min-height: auto;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 34px) clamp(52px, 7vw, 96px);
  background: #ffffff;
}

.hero::before {
  position: absolute;
  inset-block: clamp(42px, 7vw, 82px);
  right: clamp(18px, 4vw, 34px);
  width: min(42vw, 500px);
  border-radius: 8px;
  content: "";
  background: var(--ink);
}

.hero::after {
  position: absolute;
  top: clamp(62px, 10vw, 112px);
  right: min(38vw, 470px);
  width: 104px;
  height: 104px;
  border: 18px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.hero-media {
  z-index: 1;
  width: min(100%, 520px);
  min-height: 620px;
  max-height: none;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(8, 8, 8, 0.22);
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 65%, rgba(8, 8, 8, 0.32));
}

.hero-media img {
  min-height: 620px;
  object-position: center top;
  transform: none;
}

.hero-copy {
  z-index: 1;
  max-width: 650px;
  padding-block: clamp(12px, 4vw, 40px);
}

.hero-copy .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-right: 4px solid var(--accent);
  color: var(--accent);
  background: rgba(225, 110, 17, 0.08);
  font-size: 0.96rem;
}

h1 {
  font-size: clamp(4.4rem, 11vw, 8.8rem);
}

.hero-name {
  color: var(--accent);
}

.lead {
  max-width: 590px;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

.hero-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-quick-links a {
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #ffffff;
}

.hero-quick-links a:first-child,
.hero-quick-links a:hover,
.hero-quick-links a:focus-visible {
  color: #fff;
  background: var(--ink);
}

.stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 34px) clamp(38px, 6vw, 72px);
  border: 0;
  background: transparent;
}

.stats div {
  border: 1px solid rgba(8, 8, 8, 0.12);
  background: #ffffff;
}

.stats strong {
  color: var(--accent);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 82px) clamp(18px, 4vw, 34px);
}

.personal-band,
.cv-band,
.work-band,
.production-band,
.production-management,
.contact-band {
  background: #ffffff;
}

.collapsible-section > summary {
  max-width: none;
  min-height: 150px;
  padding: clamp(22px, 4vw, 38px);
  border: 2px solid var(--ink);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.08), transparent 42%),
    #ffffff;
  box-shadow: none;
}

.collapsible-section > summary .section-heading h2 {
  font-size: clamp(2.35rem, 5.4vw, 5rem);
}

.toggle-symbol {
  width: 58px;
  height: 58px;
  background: var(--accent);
  font-size: 2rem;
}

.collapsible-section[open] .toggle-symbol {
  background: var(--ink);
}

.collapsible-content {
  margin-top: 26px;
}

.personal-card,
.merged-about,
.cv-panel,
.production-card,
.client-card,
.work-card {
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(8, 8, 8, 0.06);
}

.personal-card {
  max-width: none;
}

.work-band {
  color: var(--ink);
}

.work-grid,
.production-grid,
.clients-grid {
  gap: 18px;
}

.work-card {
  min-height: 210px;
  color: var(--ink);
  background: #ffffff;
}

.work-card::before {
  color: rgba(225, 110, 17, 0.16);
}

.work-icon {
  background: var(--accent);
}

.production-card {
  min-height: 260px;
}

.production-kicker,
.production-card h3,
.work-card h3 {
  color: var(--ink);
}

.yt-link,
.account-links a {
  border-color: rgba(225, 110, 17, 0.45);
  color: var(--accent);
}

.yt-link:hover,
.account-links a:hover {
  color: #fff;
  background: var(--accent);
}

.contact-band {
  max-width: none;
  margin-top: 36px;
  color: #fff;
  background: var(--ink);
}

.contact-band .section-heading,
.contact-band .social-grid {
  max-width: 1180px;
  margin-inline: auto;
}

.contact-band .section-heading h2 {
  color: #fff;
}

.contact-band .eyebrow {
  color: var(--accent);
}

.social-grid {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.social-grid a {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: var(--ink);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-media {
    width: min(100%, 760px);
    min-height: 440px;
  }

  .hero-media img {
    min-height: 440px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    border-right: 0;
    border-bottom: 4px solid var(--accent);
  }

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

@media (max-width: 620px) {
  .site-header {
    padding-block: 14px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .hero-quick-links {
    grid-template-columns: 1fr;
  }

  .collapsible-section > summary {
    min-height: 120px;
    align-items: flex-start;
  }

  .collapsible-section > summary .section-heading h2 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .toggle-symbol {
    width: 48px;
    height: 48px;
  }
}

/* Identity lock: keep Thmanyah typography and Omar Yar black/white/orange palette. */
:root {
  --font-sans: "thmanyah Sans", "Thmanyah Sans", "Thmanyah", Tahoma, Arial, sans-serif;
  --font-display: "thmanyah Serif Display", "Thmanyah Serif Display", "thmanyah Sans", "Thmanyah Sans", Tahoma, Arial, sans-serif;
  --ink: #080808;
  --paper: #ffffff;
  --surface: #ffffff;
  --accent: #e16e11;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

/* Final Bowwe-inspired polish while preserving Omar Yar's identity. */
body {
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.035), transparent 22%, transparent 78%, rgba(8, 8, 8, 0.025)),
    #ffffff;
}

.site-header {
  max-width: none;
  width: 100%;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(8, 8, 8, 0.055);
}

.site-header::after {
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  background: rgba(8, 8, 8, 0.08);
}

.brand {
  padding: 6px 8px;
  border-radius: 4px;
}

.brand-mark {
  width: 64px;
  height: 50px;
  border-radius: 4px;
  background: #080808;
}

.brand strong {
  color: #080808;
}

.main-nav {
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(225, 110, 17, 0.34);
  background: rgba(225, 110, 17, 0.08);
}

.hero {
  align-items: center;
  max-width: 1320px;
  padding-top: clamp(34px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 84px);
}

.hero::before {
  inset-block: clamp(36px, 6vw, 70px);
  width: min(40vw, 490px);
  border-radius: 4px;
}

.hero::after {
  top: clamp(54px, 9vw, 102px);
  width: 86px;
  height: 86px;
  border-width: 15px;
}

.hero-media {
  width: min(100%, 470px);
  min-height: 0;
  height: clamp(440px, 50vw, 590px);
  border-radius: 4px;
}

.hero-media img {
  min-height: 0;
  height: 100%;
}

.hero-copy {
  padding: clamp(22px, 4vw, 44px);
  border-right: 6px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    #ffffff;
}

.hero-copy .eyebrow {
  border-right: 0;
  border-bottom: 3px solid var(--accent);
  background: transparent;
}

.hero-name {
  margin-top: -18px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.hero-quick-links a {
  justify-content: center;
  min-height: 58px;
  border-color: rgba(8, 8, 8, 0.78);
  box-shadow: 0 10px 22px rgba(8, 8, 8, 0.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1320px;
  padding-bottom: clamp(30px, 5vw, 58px);
}

.stats div {
  min-height: 130px;
  border: 2px solid rgba(8, 8, 8, 0.08);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.045);
}

.section {
  max-width: 1320px;
}

.collapsible-section > summary {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 0;
  border-right: 8px solid var(--accent);
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.1), transparent 38%),
    #ffffff;
  box-shadow: 0 20px 60px rgba(8, 8, 8, 0.08);
}

.collapsible-section > summary::before {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 92px;
  height: 92px;
  border: 18px solid rgba(225, 110, 17, 0.13);
  border-radius: 50%;
  content: "";
}

.collapsible-section > summary .section-heading h2 {
  max-width: 900px;
  line-height: 1.08;
}

.toggle-symbol {
  z-index: 1;
  color: #ffffff;
  background: #080808;
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.18);
}

.collapsible-section[open] .toggle-symbol {
  background: var(--accent);
}

.collapsible-content {
  padding: 0 4px;
}

.personal-card,
.merged-about,
.cv-panel,
.production-card,
.client-card,
.work-card {
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 4px;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.06);
}

.personal-card,
.merged-about {
  padding: clamp(24px, 4vw, 44px);
}

.cv-panel h3,
.production-card h3,
.work-card h3,
.client-card strong {
  color: #080808;
}

.work-card,
.production-card {
  border-top: 5px solid var(--accent);
}

.work-card small {
  color: var(--accent);
}

.work-icon {
  color: #ffffff;
  background: #080808;
}

.production-kicker {
  color: var(--accent);
}

.clients-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.client-card {
  min-height: 230px;
  padding: 22px 18px;
  overflow: hidden;
}

.client-card.logo-only {
  gap: 0;
}

.client-card:has(.client-logo.has-image) {
  gap: 0;
  overflow: hidden;
}

.client-card:has(.client-logo.has-image) strong {
  display: none;
}

.client-card:has(.client-logo.has-image) .client-logo.has-image {
  width: min(84%, 178px);
  height: 178px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  place-self: center;
}

.client-logo.has-image.logo-shrink-lift img {
  transform: none;
  transform-origin: center;
}

.client-logo.has-image.logo-arakan-fit img {
  transform: none;
  transform-origin: center;
}

.clients-grid .client-card {
  align-content: center;
  place-items: center;
  justify-content: center;
}

.clients-grid .client-logo.has-image {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
}

.clients-grid .client-logo.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.contact-band {
  padding-block: clamp(46px, 7vw, 88px);
  background:
    radial-gradient(circle at 16% 18%, rgba(225, 110, 17, 0.22), transparent 28%),
    #080808;
}

@media (max-width: 920px) {
  .site-header {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    padding-inline: 8px;
    border-right: 0;
    background: transparent;
  }

  .hero-media {
    height: min(86vw, 520px);
  }

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

@media (max-width: 620px) {
  .site-header {
    position: relative;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a {
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(4.1rem, 18vw, 6rem);
  }

  .hero-media {
    height: min(104vw, 560px);
  }

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

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats div {
    min-height: 118px;
    border-radius: 0;
  }

  .collapsible-section > summary {
    border-right-width: 5px;
  }

  .collapsible-section > summary::before {
    width: 62px;
    height: 62px;
    border-width: 12px;
  }
}

/* Final client-logo normalization after trimming source artwork. */
.clients-grid {
  width: min(100%, 1120px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.clients-grid .client-card {
  display: grid !important;
  min-height: 240px !important;
  padding: 24px !important;
  place-items: center !important;
  align-content: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.clients-grid .client-logo.has-image {
  display: grid !important;
  width: 176px !important;
  height: 176px !important;
  max-width: 92% !important;
  max-height: 92% !important;
  padding: 0 !important;
  place-items: center !important;
  align-self: center !important;
  justify-self: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.clients-grid .client-logo.has-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.clients-grid .client-logo.logo-wide {
  width: 200px !important;
  height: 132px !important;
}

.clients-grid .client-logo.logo-extra-wide {
  width: 210px !important;
  height: 86px !important;
}

.clients-grid .client-logo.logo-tall {
  width: 132px !important;
  height: 190px !important;
}

.clients-grid .client-logo.logo-tall img {
  width: auto !important;
  height: 168px !important;
  max-width: 100% !important;
  max-height: 168px !important;
  object-fit: contain !important;
}

.clients-grid .client-card.keep-client-name .client-logo.has-image + strong {
  display: block !important;
  margin-top: 6px;
}

.clients-grid .client-card.keep-client-name .client-logo.has-image {
  width: 148px !important;
  height: 148px !important;
}

.clients-grid .client-logo.has-image + strong {
  display: none !important;
}

@media (max-width: 920px) {
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .clients-grid .client-card {
    min-height: 190px !important;
    padding: 18px !important;
  }

  .clients-grid .client-logo.has-image {
    width: 138px !important;
    height: 138px !important;
  }

  .clients-grid .client-logo.logo-wide,
  .clients-grid .client-logo.logo-extra-wide,
  .clients-grid .client-logo.logo-tall,
  .clients-grid .client-card.keep-client-name .client-logo.has-image {
    width: 138px !important;
    height: 138px !important;
  }

  .clients-grid .client-logo.logo-tall img {
    height: 130px !important;
    max-height: 130px !important;
  }

  .clients-grid .client-logo.logo-extra-wide {
    width: 150px !important;
    height: 70px !important;
    max-width: 100% !important;
  }
}

/* Keep the taller client marks fully visible inside their cards. */
.clients-grid .client-card:nth-child(1) .client-logo.has-image img,
.clients-grid .client-card:nth-child(5) .client-logo.has-image img,
.clients-grid .client-card:nth-child(21) .client-logo.has-image img,
.clients-grid .client-card:nth-child(33) .client-logo.has-image img,
.clients-grid .client-card:nth-child(34) .client-logo.has-image img {
  width: 88% !important;
  height: 88% !important;
  transform: translateY(-7px) !important;
}

.clients-grid .client-card:nth-child(36) .client-logo.has-image img {
  width: 76% !important;
  height: 76% !important;
  transform: none !important;
}

#clients .clients-grid > .client-card:nth-of-type(1) .client-logo.has-image img,
#clients .clients-grid > .client-card:nth-of-type(2) .client-logo.has-image img {
  width: 92% !important;
  height: 92% !important;
  max-width: 176px !important;
  max-height: 176px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.clients-grid .client-card.logo-charity-office .client-logo.has-image,
.clients-grid .client-card.logo-almoeen-charity .client-logo.has-image {
  width: 198px !important;
  height: 154px !important;
}

.clients-grid .client-card.logo-altaakhi .client-logo.has-image {
  width: 150px !important;
  height: 188px !important;
}

.clients-grid .client-card.logo-charity-office .client-logo.has-image img,
.clients-grid .client-card.logo-almoeen-charity .client-logo.has-image img,
.clients-grid .client-card.logo-altaakhi .client-logo.has-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
}

@media (max-width: 620px) {
  .clients-grid .client-card.logo-charity-office .client-logo.has-image,
  .clients-grid .client-card.logo-almoeen-charity .client-logo.has-image {
    width: 150px !important;
    height: 130px !important;
  }

  .clients-grid .client-card.logo-altaakhi .client-logo.has-image {
    width: 126px !important;
    height: 154px !important;
  }
}

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

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.contact-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-cta {
  border-radius: 8px;
  white-space: nowrap;
}

.admin-login-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.admin-login-link:hover,
.admin-login-link:focus-visible {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.header-cta:hover,
.header-cta:focus-visible,
.contact-cta:hover,
.contact-cta:focus-visible {
  color: #fff;
  background: #b84f00;
  transform: translateY(-2px);
}

.hero-actions .btn {
  border-width: 2px;
}

.contact-intro {
  max-width: 680px;
  margin: 14px auto 20px;
  color: #d8d8d8;
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin: 22px auto 4px;
}

.contact-cta {
  border-radius: 4px;
}

.contact-email {
  display: grid;
  min-width: min(100%, 330px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  text-align: start;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.contact-email-label,
.contact-email-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-email strong {
  margin: 3px 0;
  direction: ltr;
  color: #ffffff;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  letter-spacing: 0.01em;
}

@media (max-width: 1360px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 1 1 calc(50% - 8px);
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(8, 8, 8, 0.1);
    background: #fff;
  }

  .main-nav.open {
    display: flex;
  }

  .header-cta,
  .admin-login-link {
    flex: 1 1 calc(50% - 8px);
  }

  .hero-actions {
    display: grid;
  }
}

/* Public interface refresh: modern layout while preserving the same font and colors. */
:root {
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --soft-shadow: 0 18px 60px rgba(8, 8, 8, 0.08);
  --lift-shadow: 0 26px 70px rgba(8, 8, 8, 0.13);
  --warm-surface: rgba(255, 255, 255, 0.82);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(225, 110, 17, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(8, 8, 8, 0.06), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #fafafa 42%, #f6f3ef 100%);
}

.site-header {
  border-bottom-color: rgba(8, 8, 8, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 34px rgba(8, 8, 8, 0.05);
}

.main-nav a,
.header-cta,
.btn,
.hero-quick-links a,
.contact-cta,
.yt-link,
.account-links a {
  border-radius: var(--radius-sm);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta,
.btn.primary,
.contact-cta {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(225, 110, 17, 0.25);
}

.header-cta:hover,
.header-cta:focus-visible,
.btn.primary:hover,
.btn.primary:focus-visible,
.contact-cta:hover,
.contact-cta:focus-visible {
  background: #b84f00;
  box-shadow: 0 18px 40px rgba(225, 110, 17, 0.32);
}

.btn.secondary {
  border-color: rgba(8, 8, 8, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.06);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(225, 110, 17, 0.11), transparent 42%),
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.86), transparent 26rem),
    linear-gradient(135deg, #fff 0%, #f7f4ef 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  inset: 8% auto auto 6%;
  border: 42px solid rgba(225, 110, 17, 0.08);
}

.hero::after {
  width: clamp(170px, 22vw, 340px);
  height: clamp(170px, 22vw, 340px);
  inset: auto 7% 8% auto;
  background: rgba(8, 8, 8, 0.045);
  filter: blur(2px);
}

.hero-media,
.personal-card,
.merged-about,
.cv-panel,
.production-card,
.work-card,
.client-card,
.stats div,
.collapsible-section > summary {
  border-radius: var(--radius-lg);
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--lift-shadow);
}

.hero-copy {
  padding: clamp(4px, 1vw, 12px);
}

.eyebrow {
  letter-spacing: 0;
}

.stats {
  gap: 12px;
  padding: clamp(16px, 3vw, 28px) clamp(18px, 6vw, 92px);
  border: 0;
  background: transparent;
}

.stats div {
  border: 1px solid rgba(8, 8, 8, 0.08);
  background: var(--warm-surface);
  box-shadow: var(--soft-shadow);
}

.section {
  position: relative;
}

.collapsible-section > summary {
  max-width: none;
  border-color: rgba(8, 8, 8, 0.08);
  background:
    linear-gradient(90deg, rgba(225, 110, 17, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.collapsible-section > summary:hover,
.collapsible-section > summary:focus-visible {
  box-shadow: var(--lift-shadow);
  transform: translateY(-2px);
}

.toggle-symbol {
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(225, 110, 17, 0.25);
}

.personal-card,
.merged-about,
.cv-panel,
.production-card,
.client-card {
  border-color: rgba(8, 8, 8, 0.08);
  box-shadow: var(--soft-shadow);
}

.focus-list span,
.skill-tags span,
.cv-list li,
.language-bars strong {
  border-radius: var(--radius-sm);
}

.focus-list span {
  border-color: rgba(8, 8, 8, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.cv-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.work-band {
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 110, 17, 0.28), transparent 28rem),
    linear-gradient(135deg, #080808 0%, #151515 62%, #080808 100%);
}

.work-grid {
  align-items: stretch;
}

.work-card {
  position: relative;
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.work-card::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.work-card:hover::after,
.work-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

.work-card:hover,
.work-card:focus-visible {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.production-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
}

.contact-band {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.social-grid a {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    width: min(100%, 520px);
    min-height: 320px;
  }

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

  .collapsible-section > summary {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    line-height: 1.75;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    justify-content: center;
  }

  .hero {
    padding-block: 28px 42px;
  }

  .hero-media {
    min-height: 280px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .hero-quick-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-email {
    min-width: 0;
    text-align: center;
  }

  .stats,
  .focus-list,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .collapsible-section > summary {
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .toggle-symbol {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .work-card {
    min-height: 158px;
  }
}

/* Keep the first two biography sections visually equal. */
#personal .collapsible-section > summary,
#cv .collapsible-section > summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  min-height: clamp(220px, 18vw, 268px) !important;
  align-items: center !important;
}

#personal .collapsible-section > summary .section-heading,
#cv .collapsible-section > summary .section-heading {
  display: grid !important;
  min-height: 136px !important;
  align-content: center !important;
  max-width: 980px !important;
}

#personal .collapsible-section > summary .section-heading h2,
#cv .collapsible-section > summary .section-heading h2 {
  font-size: clamp(3.1rem, 6vw, 5.4rem) !important;
  line-height: 1.05 !important;
}

#personal .personal-card {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#personal .personal-card p {
  min-height: 250px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(24px, 3.2vw, 38px) !important;
  border: 1px solid rgba(8, 8, 8, 0.1) !important;
  border-top: 5px solid var(--accent) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.06) !important;
  color: var(--ink) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem) !important;
  line-height: 1.9 !important;
}

@media (max-width: 920px) {
  #personal .personal-card {
    grid-template-columns: 1fr !important;
  }

  #personal .personal-card p {
    min-height: auto !important;
  }
}

@media (max-width: 620px) {
  #personal .collapsible-section > summary,
  #cv .collapsible-section > summary {
    min-height: 174px !important;
    grid-template-columns: minmax(0, 1fr) 38px !important;
  }

  #personal .collapsible-section > summary .section-heading,
  #cv .collapsible-section > summary .section-heading {
    min-height: 92px !important;
  }

  #personal .collapsible-section > summary .section-heading h2,
  #cv .collapsible-section > summary .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem) !important;
  }

  #personal .personal-card {
    min-height: auto !important;
  }
}
