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

:root {
  --bg: #0d0d0d;
  --text: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #aaaaaa;
  --text-dim: #666666;
  --border: #222222;
  --border-light: #333333;
  --nav-height: 88px;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --spacing-page: 48px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography helpers ── */
.label {
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label--lg {
  font-size: 14px;
  letter-spacing: 2px;
}

/* ── Page content wrapper ── */
.page-content {
  padding-top: var(--nav-height);
}

/* ── Section divider ── */
.section {
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-page);
}

/* ── Split-logo header (used on Artists, Jobs, Contact) ── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px var(--spacing-page);
  border-bottom: 1px solid var(--border);
}

.page-header img {
  height: 100px;
  filter: invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}

.page-header h1 {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
}

/* ── Shared button ── */
.btn {
  display: inline-block;
  background: var(--text);
  color: var(--bg);
  padding: 12px 40px;
  font-size: 12px;
  font-family: var(--font);
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

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

.nav-logo {
  height: 80px;
  filter: invert(1);
}

.nav-name {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links > li > a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-links > li > a:hover { opacity: 1; }

/* Dropdown */
.nav-has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border-light);
  list-style: none;
  min-width: 160px;
  z-index: 200;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}

.nav-dropdown li::before {
  content: "-";
  color: var(--text-dim);
  flex-shrink: 0;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 4px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-dropdown li a:hover { color: var(--text); }

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  color: var(--text);
  border-color: var(--text);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav open state */
.nav.is-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px 32px 24px;
}

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

.nav-mobile-menu ul { list-style: none; }

.nav-mobile-menu > ul > li > a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile-sub {
  display: none;
  padding: 8px 0 8px 16px;
}

.nav-mobile-sub.is-open { display: block; }

.nav-mobile-sub li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-mobile-sub li::before {
  content: "-";
  color: var(--text-muted);
  flex-shrink: 0;
}

.nav-mobile-sub li a {
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Homepage ── */
.hero { border-bottom: 1px solid var(--border); }

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px;
}

.hero-logo-left,
.hero-logo-right {
  height: 180px;
  filter: invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}

.hero-text { text-align: center; flex-shrink: 0; }

.hero-sub {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.4;
}

.studio-section { max-width: 728px; margin: 0 auto; }

.hero-fulltext {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
}

.hero-fulltext-title {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  max-width: 900px;
  line-height: 1.3;
}

.studio-tagline {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.studio-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
}

.team-section { display: flex; flex-direction: column; align-items: center; }

.team-photo-wrap { width: 100%; max-width: 560px; }

.team-photo { width: 100%; }

/* ── Artists Slider ── */
.slider-wrap {
  position: relative;
  min-height: 500px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--text);
  font-size: 72px;
  line-height: 1;
  cursor: pointer;
  padding: 0 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
  user-select: none;
}

.slider-arrow:hover { opacity: 1; }
.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }

.slider-card {
  padding: 40px 100px;
  max-width: 900px;
  margin: 0 auto;
}

/* Artist card inner */
.artist-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.artist-info { flex: 1; }

.artist-name {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.artist-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 460px;
}

.artist-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.artist-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}

.artist-fact-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.artist-fact-value {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.artist-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

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

.artist-works-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.artist-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444444;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.slider-dot.is-active { background: var(--text); }

/* Instagram icon */
.icon-instagram {
  display: flex;
  align-items: center;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.icon-instagram:hover { opacity: 1; }

/* -- Work With Us -- */
.jobs-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.jobs-options {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.jobs-option {
  flex: 1;
  padding: var(--spacing-page);
  border-right: 1px solid var(--border);
}

.jobs-option:last-child { border-right: none; }

.jobs-option-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.jobs-list {
  list-style: none;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2.2;
}

.jobs-list li::before {
  content: "- ";
}

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

.studio-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.jobs-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.jobs-cta-text {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── Contact ── */
.contact-section {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.contact-info {
  flex: 1;
  padding: var(--spacing-page);
  border-right: 1px solid var(--border);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--text-dim); }

.contact-list li a,
.contact-list li address {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.7;
}

.contact-list li a:hover { color: var(--text); }

.contact-map {
  flex: 1;
  min-height: 280px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  filter: grayscale(1) contrast(0.85);
}

/* Impressum */
.impressum { max-width: 700px; margin: 0 auto; }

.impressum-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 2;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px var(--spacing-page);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}

.site-footer-logo {
  height: 80px;
  filter: invert(1);
  opacity: 0.5;
  flex-shrink: 0;
}

.site-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer-name {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.site-footer-address {
  font-size: 12px;
  color: var(--text-dim);
  font-style: normal;
  line-height: 1.7;
}

.site-footer-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.site-footer-link:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 768px) {

  :root { --spacing-page: 24px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { height: 44px; }
  .nav-name { font-size: 11px; }

  /* Page header */
  .page-header { gap: 16px; padding: 20px 24px; }
  .page-header img { height: 60px; }
  .page-header h1 { font-size: 18px; }

  /* Hero */
  .hero-inner { flex-direction: column; gap: 16px; padding: 32px 24px; }
  .hero-logo-left, .hero-logo-right { height: 100px; transform: rotate(90deg); }
  .hero-title { font-size: 20px; }

  /* Artists slider */
  .slider-card { padding: 24px 48px; }
  .slider-arrow { font-size: 48px; position: fixed; top: 50%; transform: translateY(-50%); z-index: 50; }
  .artist-header { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
  .artist-photo { width: 160px; height: 160px; }
  .artist-works-grid,
  .artist-works-grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* Jobs */
  .jobs-options { flex-direction: column; }
  .jobs-option { border-right: none; border-bottom: 1px solid var(--border); }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-section { flex-direction: column; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-map { min-height: 240px; }
}

@media (max-width: 480px) {
  .artist-works-grid,
  .artist-works-grid--4 { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
}
