/* Minimal black/white studio styling */
* {
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --focus: rgba(255, 255, 255, 0.35);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
}

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus {
  left: 12px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  user-select: none;
}

.brand__link {
  display: inline-block;
  line-height: 0;
}

.brand__link:hover .brand__logo {
  opacity: 0.92;
}

.brand__logo {
  width: 150px;
  height: auto;
  display: block;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 18px;
}
.brand__sub {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

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

.nav__link {
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  outline: none;
}
.nav__link.is-active {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang-toggle__btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
}
.lang-toggle__btn:focus {
  box-shadow: 0 0 0 3px var(--focus);
  outline: none;
}
.lang-toggle__btn.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--fg);
}

.page {
  min-height: calc(100vh - 128px);
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px 52px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero__kicker {
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 650;
  margin-bottom: 10px;
}
.hero__title {
  font-size: 44px;
  line-height: 1.04;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
@media (max-width: 540px) {
  .hero__title {
    font-size: 34px;
  }
}

.hero__lead {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 800;
  cursor: pointer;
}
.btn--primary {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  margin-top: 38px;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section__title {
  font-size: 22px;
  margin: 0;
  font-weight: 900;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.showreel-section {
  margin-top: 8px;
}

.showreel-frame {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 16 / 9;
}

.showreel-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.grid-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 860px) {
  .grid-projects {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

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

.project-card__inner {
  padding: 16px;
}

.project-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.project-card__thumb:hover img {
  opacity: 0.92;
}

.project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.project-card__thumb-placeholder {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.project-card__title {
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 8px;
}
.project-card__desc {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
  font-size: 14px;
}
.project-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn--link {
  text-decoration: none;
}

.embed-wrap {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.embed-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}
@media (max-width: 540px) {
  .embed-wrap iframe {
    height: 260px;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
}
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.about-bio {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 10px;
}

.bts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 860px) {
  .bts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bts-tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}
.bts-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-simple {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-simple__label {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-simple__value {
  font-size: 18px;
  font-weight: 950;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand {
  font-weight: 900;
  margin-bottom: 6px;
}
.footer__meta {
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__sep {
  opacity: 0.7;
}
.footer__link {
  font-weight: 700;
}

